#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

.cookie-content p {
    margin: 0;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background-color: #3b82f6;
    color: white;
}

.cookie-btn.accept:hover {
    background-color: #2563eb;
}

.cookie-btn.reject {
    background-color: #f3f4f6;
    color: #4b5563;
}

.cookie-btn.reject:hover {
    background-color: #e5e7eb;
}

#cookie-more-info {
    color: #6b7280;
    font-size: 0.8rem;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
    }
    
    .cookie-content p {
        flex: 1;
    }
    
    .cookie-buttons {
        flex-shrink: 0;
    }
    
    #cookie-more-info {
        flex-shrink: 0;
        margin-left: 1rem;
    }
} 