/* Estilos base adaptados para Go High Level */
body {
    font-size: 14px;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Loader para indicador de carga */
.loader {
    border-top-color: #3498db;
    -webkit-animation: spinner 1.5s linear infinite;
    animation: spinner 1.5s linear infinite;
}

@-webkit-keyframes spinner {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilos para Select2 */
.select2-container--default .select2-selection--multiple {
    border-color: #e2e8f0;
    border-radius: 0.375rem;
    min-height: 38px; /* Reducido de 42px */
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border-color: #3b82f6;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e5e7eb;
    border: none;
    border-radius: 0.25rem;
    padding: 1px 6px;
    margin-top: 3px;
    font-size: 0.75rem;
}

/* Estilos para los iconos */
[data-lucide] {
    width: 16px;
    height: 16px;
}

/* Ajustes para SweetAlert2 */
.swal2-title {
    font-size: 1.25rem !important;
}

.swal2-html-container {
    font-size: 0.875rem !important;
}

.swal2-confirm, .swal2-cancel {
    font-size: 0.875rem !important;
    padding: 0.5rem 1rem !important;
}

/* Estado de cartera */
.estado-cartera-al-dia {
    background-color: #d1fae5;
    color: #065f46;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

.estado-cartera-atrasado {
    background-color: #fee2e2;
    color: #b91c1c;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
}

/* Estilos para resumen de cartera */
.stats-card {
    padding: 0.75rem;
    border-radius: 0.375rem;
    border-width: 1px;
}

.stats-card-blue {
    background-color: #eff6ff;
    border-color: #dbeafe;
}

.stats-card-green {
    background-color: #ecfdf5;
    border-color: #d1fae5;
}

.stats-card-red {
    background-color: #fef2f2;
    border-color: #fee2e2;
}

.stats-label {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stats-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.stats-subtitle {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Estilos para paginación */
.pagination-link {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin: 0 0.25rem;
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
    font-size: 0.75rem;
}

.pagination-link:hover {
    background-color: #f3f4f6;
}

.pagination-link-active {
    background-color: #2563eb;
    color: white;
}

.pagination-link-disabled {
    color: #9ca3af;
    pointer-events: none;
}