.cookie-consent {
    position: fixed;
    bottom: 20px; /* Original bottom margin for desktop */
    right: 20px; /* Position on the right for desktop */
    left: auto; /* Remove left positioning */
    transform: none; /* Remove transform */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent dark background */
    backdrop-filter: blur(5px); /* Blur effect */
    border: none; /* Remove border */
    border-radius: 12px; /* Slightly larger radius */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* More subtle shadow */
    padding: 10px; /* Smaller padding */
    max-width: 350px; /* Original max-width for desktop */
    z-index: 10000;
}

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center content */
    text-align: center; /* Center text */
}

.cookie-consent-content p {
    margin: 0 0 10px 0;
    font-size: 13px; /* Smaller font size */
    line-height: 1.3;
    color: #fae7c9; /* Lighter text color for dark background */
}

.cookie-consent-content button,
.cookie-consent-content a {
    display: block; /* Make them block level */
    width: 100%; /* Full width */
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease;
}

.cookie-consent-content button#accept-cookies {
    background-color: #4a7c59; /* Green background */
    color: #ffffff; /* White text */
    border: 1px solid #4a7c59;
}

.cookie-consent-content button#accept-cookies:hover {
    background-color: #3a6a49;
    border-color: #3a6a49;
}

.cookie-consent-content a#cookie-policy-link {
    background-color: transparent; /* Transparent background for link */
    color: #fae7c9; /* Lighter text color */
    border: 1px solid #fae7c9;
}

.cookie-consent-content a#cookie-policy-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: none;
    }
}