    *::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: #242424;
        opacity: 0;
    }

    *::-webkit-scrollbar {
        width: 5px;
        background-color: #242424;
        opacity: 0;
    }

    *::-webkit-scrollbar-thumb {
        background-color: #F5F5F5;
        border-radius: 5px;
    }

    body {
        font-family: "Space Mono", monospace;

    }

    h1 {
        color: #f0f0f0;
        font-size: 30px;
    }

    p {
        color: #f0f0f0;
        font-size: 20px;
        text-align: center;
    }

    .item {
        position: absolute;
        width: 200px;
        height: 100px;
        background: #242424;
        color: #fff;
        overflow: auto;
        /* Enable scrolling */
        border-radius: 12px;
        touch-action: none;
        user-select: none;
        top: 150px;
        left: 150px;
        opacity: 0.7;

        /* Hide the scrollbar */
        scrollbar-width: none;
        /* For Firefox */
        -ms-overflow-style: none;
        /* For Internet Explorer and Edge */
    }

    .item-content {
        text-align: center;
    }

    .item::-webkit-scrollbar {
        display: none;
        /* For Chrome, Safari, and Opera */
    }

    .slider {
        -webkit-appearance: none;
        margin: 0;
        width: 100%;
        height: 25px;
        background: #d3d3d3;
        outline: none;
        opacity: 0.7;
        -webkit-transition: .2s;
        transition: opacity .2s;
    }

    .slider:hover {
        opacity: 1;
    }

    .slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        background: #360758;
        cursor: pointer;
    }

    .slider::-moz-range-thumb {
        width: 25px;
        height: 25px;
        background: #360758;
        cursor: pointer;
    }


    #opacityRange {
        pointer-events: auto;
        width: 75%
        /* Ensure the slider can handle its own events */
    }

    #mydivheader {
        padding: 10px;
        cursor: move;
        z-index: 10;
        background-color: rgb(54, 7, 88);
        color: #fff;
        text-align: center;
        font-size: 25px;
        font-weight: bold;
    }

    input {
        position: relative;
        display: inline-block;
        font-size: 20px;
        box-sizing: border-box;
        transition: all 0.5s;
    }

    input[type="text"] {
        margin-bottom: 15px;
        background: #d3d3d344;
        width: 75%;
        height: 35px;
        border: none;
        outline: none;
        padding: 0 25px;
        border-radius: 10px 10px 10px 10px;
    }
    #settings {
        display: block; /* Ensure it's block for height calculation */
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        background-color: #131313;
        margin-bottom: 15px;
    }

    #settings.open {
        max-height: 200px; /* Adjust this value based on the content height */
    }
    .settings-icon {
position: absolute;
    top: 13px;
    left: 5px;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 25px;
    cursor: pointer;
    z-index: 11;
        /* Ensure it appears above other elements */
    }

    .settings-icon:hover {
        color: #d3d3d3;
        /* Change color on hover */
    }