        :root {
            --primary-green: #2d5a27;
            --light-green: #e8f5e9;
            --gold: #c5a059;
            --text-dark: #333;
            --bg-color: #f4f7f6;
            --bg-white: #ffffff;
            --shadow: rgba(0,0,0,0.1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg-color);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            direction: rtl;
            flex-direction: column;
        }
        .home-page{
            display: inline-block;
            color: var(--gold);
            text-decoration: none;
            font-size: 0.85rem;
            cursor: pointer;
            width: 100%;
            text-align: start;
        }

        .card {
            background: var(--bg-white);
            width: 90%;
            max-width: 400px;
            padding: 2rem;
            border-radius: 25px;
            box-shadow: 0 10px 30px var(--shadow);
            text-align: center;
            border-top: 8px solid var(--primary-green);
        }

        h1 {
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        #select-tassbih{
            color: var(--gold);
            font-size: 1.5rem;
            margin-bottom: 50px;
            border: none;
            padding: 6px 10px;
            border-radius: 20px;
            max-width: 260px;
        }



        /* Circular Progress Styling */
        .progress-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .progress-ring {
            transform: rotate(-90deg);
        }

        .progress-ring__background {
            stroke: var(--light-green);
        }

        .progress-ring__circle {
            transition: stroke-dashoffset 0.3s ease, stroke 0.3s ease;
            stroke-linecap: round;
        }

        .counter-box {
            position: absolute;
            display: flex;
            flex-direction: column;
        }

        .count-num {
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--primary-green);
            line-height: 1;
        }

        .counter-label {
            font-size: 1rem;
            color: #888;
        }

        /* Button Styling */
        .click-area {
            width: 120px;
            height: 120px;
            background-color: var(--primary-green);
            color: white;
            border: 8px solid var(--light-green);
            border-radius: 50%;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            outline: none;
            transition: transform 0.1s, box-shadow 0.2s;
            box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
            margin-bottom: 20px;
            -webkit-tap-highlight-color: transparent;
        }

        .click-area:active {
            transform: scale(0.92);
            background-color: #1e3d1a;
        }

        .stats {
            margin-top: 10px;
            font-size: 1rem;
            color: var(--text-dark);
        }

        .reset-link {
            display: inline-block;
            margin-top: 40px;
            color: var(--gold);
            text-decoration: none;
            font-size: 0.85rem;
            cursor: pointer;
        }
        .goal-value{
            width: 40px;
            height: 30px;
            text-align: center;
            padding: 8px;
            border: 1px solid var(--gold);
            border-radius: 20px;
        }
