 /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #F5F5E1;
            margin: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            font-family: 'Inter', sans-serif;
        }

        /* Container styling with dark green theme */
        .container {
            background-color: #16331c;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            max-width: 420px;
            width: 100%;
        }

        /* Typography with Archivo Black for headings */
        h1 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 45px;
            color: #b7f37a;
            margin-bottom: 8px;
            text-align: center;
        }

        .subtitle {
            font-size: 16px;
            font-weight: 500;
            color: #8cbf63;
            margin-bottom: 32px;
            text-align: center;
        }

        /* Button styling to match new theme */
        .shop-button {
            width: 100%;
            padding: 16px;
            margin-bottom: 12px;
            border: none;
            border-radius: 16px;
            background-color: rgba(255, 255, 255, 0.95);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            font-weight: 500;
            color: #16331c;
            transition: all 0.2s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(183, 243, 122, 0.1);
        }

        .shop-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(183, 243, 122, 0.2);
            background-color: #ffffff;
            border-color: rgba(183, 243, 122, 0.3);
        }

        .shop-distance {
            font-size: 14px;
            color: #6b7280;
            margin-left: 8px;
            font-weight: 400;
        }

        .status-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            transition: background-color 0.2s ease, transform 0.2s ease;
            background-color: transparent;
        }

        /* Modal styling updated for dark theme */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(22, 51, 28, 0.8);
            backdrop-filter: blur(4px);
            justify-content: center;
            align-items: center;
            z-index: 998;
        }

        .modal-content {
            position: relative; /* Zorgt dat kinderen zoals .close-btn zich hierbinnen oriënteren */
            background-color: white;
            padding: 32px;
            border-radius: 24px;
            max-width: 400px;
            width: 90%;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        #shopNameTitle {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            color: #16331c;
            margin-bottom: 16px;
        }

        /* Status buttons with updated hover states */
        .status-buttons {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .status-btn {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .status-btn.working {
            background-color: #34d399;
            color: white;
        }

        .status-btn.not-working {
            background-color: #fb7185;
            color: white;
        }

        .status-btn:hover {
            transform: translateY(-1px);
            filter: brightness(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .status-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .status-btn:disabled:hover {
            transform: none;
            filter: none;
            box-shadow: none;
        }

        /* Status messages with adjusted colors */
        .confirmation-message {
            margin-top: 16px;
            text-align: center;
            color: #34d399;
            font-weight: 500;
        }

        .error-message {
            margin-top: 16px;
            text-align: center;
            color: #fb7185;
            font-weight: 500;
        }

        .location-status {
            margin-top: 16px;
            padding: 12px;
            border-radius: 12px;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
        }

        .location-status.error {
            background-color: #fff1f2;
            color: #be123c;
        }

        .location-status.success {
            background-color: #ecfdf5;
            color: #065f46;
        }

        /* Animations */
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .bounce {
            animation: bounce 0.3s ease-in-out;
        }

        @keyframes pulse {
            50% { transform: scale(1.1); }
        }

        .pulse {
            animation: pulse 0.3s ease-in-out;
        }

        /* Consent modal styling */
        .consent-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(22, 51, 28, 0.95);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 999;
        }

        .consent-content {
            background-color: white;
            padding: 32px;
            border-radius: 24px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        .consent-content h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            color: #16331c;
            margin-bottom: 16px;
        }

        .consent-content p {
            margin-bottom: 24px;
            line-height: 1.5;
            color: #374151;
        }

        .consent-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .consent-btn {
            padding: 12px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .consent-btn.accept {
            background-color: #34d399;
            color: white;
        }

        .consent-btn.reject {
            background-color: #fb7185;
            color: white;
        }

        .consent-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        /* Nieuwe styles voor cooldown en notificaties */
        .status-btn.cooldown {
            opacity: 0.5;
            cursor: not-allowed;
            position: relative;
            overflow: hidden;
        }

        .status-btn.cooldown::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                45deg,
                rgba(0, 0, 0, 0.1),
                rgba(0, 0, 0, 0.1) 10px,
                rgba(0, 0, 0, 0.2) 10px,
                rgba(0, 0, 0, 0.2) 20px
            );
        }

        .cooldown-timer {
            font-size: 14px;
            color: #6b7280;
            text-align: center;
            margin-top: 8px;
        }

        /* Email signup popup styling */
        .email-signup-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(22, 51, 28, 0.95);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .email-signup-content {
            background-color: white;
            padding: 32px;
            border-radius: 24px;
            max-width: 500px;
            width: 90%;
            text-align: center;
        }

        .email-signup-content h2 {
            font-family: 'Archivo Black', sans-serif;
            font-size: 24px;
            color: #16331c;
            margin-bottom: 16px;
        }

        .email-signup-content p {
            margin-bottom: 24px;
            line-height: 1.5;
            color: #374151;
        }

        .signup-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .form-input {
            width: 100%;
            padding: 12px;
            border: 2px solid #16331c;
            border-radius: 12px;
            font-size: 16px;
            transition: border-color 0.2s ease;
        }

        .form-input:focus {
            outline: none;
            border-color: #34d399;
        }

        .signup-btn {
            background-color: #34d399;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .signup-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .signup-message {
            margin-top: 16px;
            padding: 12px;
            border-radius: 8px;
            display: none;
        }

        .signup-message.success {
            background-color: #ecfdf5;
            color: #065f46;
            display: block;
        }

        .signup-message.error {
            background-color: #fff1f2;
            color: #be123c;
            display: block;
        }

        /* Hide main container by default */
        .container {
            display: none;
        }

        /* Close button styling */
        .close-btn {
            position: absolute;
            right: 10px; /* Minder ruimte voor strakkere plaatsing */
            top: 10px;
            width: 32px;
            height: 32px;
            background-color: transparent;
            border: none;
            font-size: 24px;
            line-height: 1;
            color: #16331c;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .close-btn:hover {
            background-color: rgba(22, 51, 28, 0.1);
            transform: rotate(90deg);
        }

        .footer-text {
            margin-top: 16px; /* Ruimte boven de footer */
            font-size: 12px; /* Subtiele tekstgrootte */
            color: #8cbf63; /* Zelfde kleur als de subtitel of aangepast naar jouw voorkeur */
            text-align: center;
        }

        .footer-text a {
            color: #34d399; /* Maak de link opvallen */
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-text a:hover {
            color: #22c55e; /* Andere tint groen bij hover */
        }
