/* Consent Popup Styles */
.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark background */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Content */
.popup-content {
    background-color: #333; /* Dark background for content */
    color: #fff; /* White text */
    padding: 30px;
    border-radius: 10px;
    text-align: left;
    max-width: 500px; /* More compact width */
    width: 90%;
    overflow-y: auto;
    max-height: 80vh;
    font-family: 'Arial', sans-serif;
}

/* Title and Paragraph */
.popup-content h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.popup-content p {
    font-size: 16px;
    line-height: 1.6;
}

.popup-content ul {
    padding-left: 20px;
}

.popup-content li {
    margin-bottom: 10px;
}

/* Button Styling */
#consent-btn {
    padding: 12px 25px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 20px auto 0;
    transition: background-color 0.3s;
}

#consent-btn:hover {
    background-color: #45a049;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .popup-content {
        width: 80%; /* Adjust width on mobile */
    }

    #consent-btn {
        width: 100%; /* Full-width button on mobile */
    }
}
