/* Quitar padding-top específico para la página de política de cookies */
.ui-g.ui-fluid {
    padding-top: 0 !important;
}

/* Estilos para el banner de cookies */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid #2c5aa0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    padding: 20px;
    font-family: Arial, sans-serif;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    margin: 0 0 10px 0;
    color: #2c5aa0;
    font-size: 18px;
    font-weight: bold;
}

.cookie-banner-text p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: #2c5aa0;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #1e3d6b;
}

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

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

.cookie-btn-accept {
    background-color: #2c5aa0;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #1e3d6b;
    transform: translateY(-1px);
}

.cookie-btn-reject {
    background-color: #f5f5f5;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-btn-reject:hover {
    background-color: #e9e9e9;
    color: #333;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-text {
        min-width: auto;
        margin-bottom: 15px;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .cookie-banner-text h4 {
        font-size: 16px;
    }
    
    .cookie-banner-text p {
        font-size: 13px;
    }
    
    .cookie-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}