/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 33, 39, 0.95); /* #1e2127 with opacity */
    color: #fff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #e8f24c;
    font-family: 'Roboto', sans-serif;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-text {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-consent-link {
    color: #e8f24c;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cookie-consent-link:hover {
    border-color: #e8f24c;
    border-radius: 4px;
}

.cookie-consent-accept {
    background-color: #e8f24c;
    color: #1e2127;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(232, 242, 76, 0.5);
}

.cookie-consent-accept:hover {
    background-color: #fff;
    box-shadow: 0 0 15px rgba(232, 242, 76, 0.8);
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        flex-direction: column;
        padding: 15px;
    }
    
    .cookie-consent-text {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Language-specific content */
body.lang-en .lang-sv.cookie-content {
    display: none !important;
}

body.lang-sv .lang-en.cookie-content {
    display: none !important;
}
