/* Cookie Consent Banner */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50; /* Dark blue-gray background */
    color: #ecf0f1; /* Light gray text */
    padding: 15px;
    text-align: center;
    z-index: 1000;
    display: none; /* Initially hidden */
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

#cookie-consent-banner p {
    margin: 0;
    display: inline;
}

#cookie-consent-banner a {
    color: #3498db; /* Blue link color */
    text-decoration: underline;
}

#cookie-consent-banner a:hover {
    color: #5dade2; /* Lighter blue on hover */
}

#cookie-consent-banner button {
    background-color: #2980b9; /* Blue button */
    color: #ffffff; /* White text */
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

#cookie-consent-banner button:hover {
    background-color: #3498db; /* Lighter blue on hover */
}

#cookie-consent-banner #decline-cookie-btn {
    background-color: #c0392b; /* Red decline button */
}

#cookie-consent-banner #decline-cookie-btn:hover {
    background-color: #e74c3c; /* Lighter red on hover */
}