/* Estilos para el banner de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner button {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    min-width: 120px;
}

.cookie-banner .btn-accept {
    background: #4CAF50;
    color: white;
}

.cookie-banner .btn-necessary {
    background: #2196F3;
    color: white;
}

.cookie-banner .btn-reject {
    background: #f44336;
    color: white;
}

@media (max-width: 600px) {
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-banner button {
        width: 100%;
        max-width: 200px;
    }
}