/* Cookie Consent Banner Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 15px;
    transition: transform 0.5s ease-in-out;
    border-top: 3px solid #207688; /* scbBlue color */
    transform: translateY(100%); /* Start below the viewport */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: #49A3B3; /* scbHover color - brighter for dark background */
}

.cookie-text p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #f5f5f5;
}

.cookie-link {
    color: #49A3B3; /* scbHover color */
    text-decoration: underline;
    font-weight: 600;
}

.cookie-link:hover {
    color: #78CDCF; /* lighter blue for hover on dark background */
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.necessary-btn {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.necessary-btn:hover {
    background-color: #e5e5e5;
}

.accept-btn {
    background-color: #207688; /* scbBlue color */
    color: white;
}

.accept-btn:hover {
    background-color: #49A3B3; /* scbHover color */
}

.cookie-consent-hidden {
    transform: translateY(100%);
}
