        body {
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }

        #raid-time-body {
            background: black;
            font-family: Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100vw;
            height: 100vh;
        }

        #timer {
            font-size: 100vh;
            color: #00FF55;
            font-weight: 800;
            padding-bottom: 5vh;
        }

        @media (max-width:550px) {
            #timer {
                transform: scale(0.54);
            }
        }

        #control-buttons {
            position: absolute;
            z-index: 1000;
            bottom: 1vh;
            display: flex;
            justify-content: center;
        }

        #control-buttons button {
            cursor: pointer;
            font-size: 14px;
            padding: 4px 10px;
            margin: 5px;
            transition: all .2s;
        }

        #control-buttons button:hover {
            transform: scale(1.1);
            transition: all .2s;
        }

        /* ///////// */
        #rightToggleBtn {
            position: fixed;
            right: 18px;
            top: 8px;
            z-index: 2000;
            background: #4949495b;
            color: #fff;
            padding: 12px 16px;
            border: none;
            cursor: pointer;
            border-radius: 8px;
        }

        /* Right side drawer */
        #rightDrawer {
            position: fixed;
            right: 0;
            top: 0;
            overflow-y: overlay;
            pointer-events: auto;
            height: 100%;
            width: 330px;
            background: #080808d1;
            color: #fff;
            box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
            transform: translateX(100%);
            transition: 0.3s ease;
            z-index: 599;
            padding: 15px 20px 15px 20px;

            /* Scrollable content */
            overflow-y: auto;
        }

        #rightDrawerTitle {
            padding-bottom: 10px;
        }

        /* Open state */
        #rightDrawer.open {
            transform: translateX(0);
            pointer-events: none;
        }

        .section {
            margin: 10px 0px 0px 0px;
            border: 1px solid #afafaf99;
            border-radius: 5px;
            padding: 20px 10px;
            background: #000000;
        }

        .section button {
            cursor: pointer;
        }

        .section-title {
            margin: 0px 0px 10px 0px;
            border-bottom: 1px solid rgba(121, 121, 121, 0.644);
        }


        .section-input-lable {
            margin-top: 15px;
            display: block;
            width: 100%;
        }

        .section-input {
            display: block;
            width: 96%;
            margin: 10px 0px 10px 0px;
            height: 20px;
            padding: 3px 0px 3px 7px;
        }

        .section-input-color {
            display: block;
            width: 100%;
            margin: 10px 0px 0px 0px;
            height: 40px;
        }

        .section-button {
            display: block;
            width: 100%;
            margin: 10px 0px 0px 0px;
            height: 40px;
        }

        /* ========================================================== */
        /* =================================================================== */
        .sound-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 12px 0;
            padding: 8px 10px;
            border: 1px solid #3d3d3d;
        }

        /* 🔥 COMMON TOGGLE DESIGN (CLASS BASED) */
        .sound-toggle-switch {
            position: relative;
            display: inline-block;
            width: 55px;
            height: 28px;
        }

        .sound-toggle-switch>input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .sound-toggle-slider {
            position: absolute;
            inset: 0;
            background-color: #ccc;
            transition: 0.3s;
            border-radius: 28px;
            cursor: pointer;
        }

        .sound-toggle-slider::before {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            left: 4px;
            top: 4px;
            background: white;
            border-radius: 50%;
            transition: 0.3s;
        }

        .sound-toggle-switch>input:checked+.sound-toggle-slider {
            background-color: #4CAF50;
        }

        .sound-toggle-switch>input:checked+.sound-toggle-slider::before {
            transform: translateX(26px);
        }

        .sound-status {
            font-weight: 200;
        }

        /* ================================================================== */
        /* ================================================================== */
        /* ================================================================== */
        /* radio hide */
        input[type="radio"][name="raid10sSound"] {
            appearance: none;
            -webkit-appearance: none;
            width: 18px;
            height: 16px;
            border: 1px solid #999;
            border-radius: 0px;
            margin: -4px 6px 0 6px;
            cursor: pointer;
            position: relative;
            vertical-align: middle;
            background: #fff;
            transition: 0.2s;
        }

        /* checked look */
        input[type="radio"][name="raid10sSound"]:checked {
            background: #14ff63;
            border-color: #14ff63;
        }

        /* tick mark */
        input[type="radio"][name="raid10sSound"]:checked::after {
            content: "";
            position: absolute;
            width: 4px;
            height: 8px;
            border: solid #000;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
            left: 5px;
            top: 1px;
        }

        .redio-10s {
            border: 1px solid #ffffff87;
            padding: 4px 6px;
            border-radius: 6px;
        }