
/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    top: -100%;
    left: 0;
    right: 0;
    background: #007bff;
    color: white;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    transition: top 0.5s ease-out;
    border-bottom: 2px solid #4dabf7;
}

.cookie-banner.show {
    top: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
}

.cookie-message {
    flex: 1;
    min-width: 250px;
}

.cookie-message h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #4dabf7;
}

.cookie-message h3 i {
    margin-right: 10px;
}

.cookie-message p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-message a {
    color: #a0c4ff;
    text-decoration: underline;
}

.cookie-message a:hover {
    color: white;
}

.copyright-developer {
    margin-top: 10px;
    font-size: 12px;
    color: #a0c4ff;
}

.copyright-developer a {
    color: #a0c4ff;
    text-decoration: none;
}

.copyright-developer a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #4dabf7;
    color: #00264d;
}

.cookie-btn.customize {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
