/* Cookie Consent Banner - Bottom Fixed Position */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
    border-top: 2px solid #333;
    z-index: 1000;
    font-family: 'Source Sans Pro', sans-serif;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
    min-width: 300px;
}

.cookie-banner-text strong {
    color: #ffb400;
    font-weight: bold;
}

.cookie-banner-text a {
    color: #4e9af1;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-accept-btn, .cookie-decline-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.cookie-accept-btn {
    background-color: #28a745;
    color: white;
}

.cookie-accept-btn:hover {
    background-color: #23913c;
}

.cookie-decline-btn {
    background-color: #6c757d;
    color: white;
}

.cookie-decline-btn:hover {
    background-color: #5a6268;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .cookie-banner-text {
        min-width: auto;
        margin-bottom: 10px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-accept-btn, .cookie-decline-btn {
        flex: 1;
        max-width: 120px;
    }
} 