.asset-checkbox {
    transform: scale(1.2);
    cursor: pointer;
}

#selectAll {
    transform: scale(1.2);
    cursor: pointer;
}

/* Estilos modernos para transferencias y componentes específicos */

/* Tarjetas de estadísticas */
.stat-card {
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Cards de dashboard */
.dashboard-card {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.dashboard-card .card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 1.25rem;
}

/* Badges de estado */
.status-badge {
    padding: 0.35em 0.8em;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-active {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status-inactive {
    background-color: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Botones de acción */
.action-btn {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.action-btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

/* Tablas con acciones */
.table-actions {
    white-space: nowrap;
}

.table-actions .btn {
    margin-right: 0.25rem;
}

/* Formularios de búsqueda */
.search-form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.search-form .form-control {
    border-right: none;
}

.search-form .btn {
    border-left: none;
}

/* Cards de perfil */
.profile-card {
    border-radius: 12px;
    overflow: hidden;
}

.profile-card .card-body {
    padding: 2rem;
}

/* Progress bars modernas */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
}

/* Alertas modernas */
.modern-alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.modern-alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.modern-alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: #856404;
    border-left: 4px solid #ffc107;
}

.modern-alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Grid de iconos */
.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
}

.icon-grid-item {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.3s;
}

.icon-grid-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.icon-grid-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #28a745;
}

/* Timeline moderno */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.7rem;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background-color: #28a745;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar-open .sidebar {
        transform: translateX(0);
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .table-responsive {
        border-radius: 8px;
    }
}

/* Animaciones */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Efecto de carga moderno */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #28a745;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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