/**
 * Cookie Banner Styles
 * Estilos para la barra de consentimiento de cookies
 */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    border-top: 3px solid #333;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.cookie-banner-text p {
    margin: 0;
}

.cookie-banner-text a {
    color: #0066cc;
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #28a745;
    color: white;
}

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

.cookie-btn-reject {
    background-color: #dc3545;
    color: white;
}

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

.cookie-btn-configure {
    background-color: #6c757d;
    color: white;
}

.cookie-btn-configure:hover {
    background-color: #5a6268;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }

    #cookie-banner {
        padding: 15px;
    }

    .cookie-banner-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
