        @import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&family=Noto+Sans+Arabic:wght@100..900&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans Arabic', sans-serif;
            background-color: #f1dceb;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .app-container {
            max-width: 400px;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }

        .switch {
            position: fixed;
            top: 10%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: block;
            --width-of-switch: 3.5em;
            --height-of-switch: 2em;
            /* size of sliding icon -- sun and moon */
            --size-of-icon: 1.4em;
            /* it is like a inline-padding of switch */
            --slider-offset: 0.3em;
            width: var(--width-of-switch);
            height: var(--height-of-switch);
            z-index: 10;
        }

        /* Hide default HTML checkbox */
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        /* The slider */
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #f4f4f5;
            transition: .4s;
            border-radius: 30px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: var(--size-of-icon, 1.4em);
            width: var(--size-of-icon, 1.4em);
            border-radius: 20px;
            left: var(--slider-offset, 0.3em);
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(40deg, #ff0080, #ff8c00 70%);
            transition: .4s;
        }

        input:checked+.slider {
            background-color: #303136;
        }

        input:checked+.slider:before {
            left: calc(100% - (var(--size-of-icon, 1.4em) + var(--slider-offset, 0.3em)));
            background: #303136;
            /* change the value of second inset in box-shadow to change the angle and direction of the moon  */
            box-shadow: inset -3px -2px 5px -2px #8983f7, inset -10px -4px 0 0 #a3dafb;
        }

        .supplication-display {
            color: #4e3447;
            padding: 2vw;
            margin: 2vw;
            overflow-y: hidden;
            font-size: 16px;
            border-radius: 10px;
            word-break: break-word;
        }

        #supplication-text {
            font-size: clamp(1em, 2.5vw, 1.3em);
            line-height: 1.6;
            word-break: break-word;
        }

        button {
            margin: 1vw;
            padding: 0.7em 1.2em;
            font-size: 1em;
            min-width: 40px;
            min-height: 40px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: inline-block;
        }

        .controls {
            position: fixed;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1vw;
        }


        button:hover {
            background-color: #b898af;
            color: white;
        }

        button[disabled] {
            background-color: #e5cbde;
            cursor: not-allowed;
        }

        #counter {
            font-size: 16px;
            padding: 0.5em 1em;
            border-radius: 5px;
        }

        footer {
            direction: ltr;
            text-align: left;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 10px;
            width: 100%;
            margin: 0 auto;
            text-align: center;
            font-size: 0.8em;
            color: #b898af;
        }

        footer a {
            color: #b898af;
            text-decoration: none;
            font-weight: bold;
        }

        @media screen and (max-width: 600px) {
            .app-container {
                padding: 10px;
                width: 90%;
            }

            .supplication-display {
                font-size: 20px;
            }
            
        }