/* Main Popup Container */
#cookie-popup {
    display: none; /* Initially hidden */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%; /* Responsive width */
    max-width: 500px; /* Limit the maximum width */
    background-color: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #000; /* 1px border added */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px 15px; /* Reduced padding for mobile */
    text-align: center;
    z-index: 1000;
    font-family: Arial, sans-serif;
}

/* Logo styling */
#cookie-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
#cookie-popup h2 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    margin-top: 20px;
}

/* Text Styling */
#cookie-popup p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Links Styling */
#cookie-popup a {
    color: #007bff;
    text-decoration: none;
    font-size: 0.85rem;
}

    #cookie-popup a:hover {
        text-decoration: underline;
    }

/* Button Container */
#cookie-popup .button-group {
    margin-top: 15px;
}

/* Button Styles */
#cookie-popup button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    margin: 5px;
    width: 100%; /* Full width buttons on mobile */
    transition: background-color 0.3s ease;
}

    /* Accept, Decline, Save, and Back Buttons */
    #cookie-popup button#accept-all,
    #cookie-popup button#decline-all,
    #cookie-popup button#save-selection,
    #cookie-popup button#back {
        background-color: #6c757d;
        color: white;
    }

    #cookie-popup button#accept-all {
        background-color: #007bff;
        color: white;
    }

    #cookie-popup button#save-selection {
        background-color: #cddbe8;
        color: white;
    }

    #cookie-popup button#decline-all {
        background-color: #dc3545;
        color: white;
    }

    /* Button Hover Effects */
    #cookie-popup button:hover {
        opacity: 0.9;
    }

/* Hidden Preferences Section */
#preferences-container {
    margin-top: 20px;
}

.cookie-preference {
    margin: 10px 0;
}

    .cookie-preference input[type="checkbox"] {
        margin-right: 10px;
    }

/* Launch Popup Button */
#launch-popup {
    display: block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

    #launch-popup:hover {
        opacity: 0.9;
    }
