
    .dashboard-card {
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        background: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: box-shadow 0.2s ease;
        margin-bottom: 20px;
    }
    
    .dashboard-card:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
    
    .dashboard-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .dashboard-title {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        margin: 0;
    }
    
    .dashboard-meta {
        display: flex;
        gap: 15px;
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
    }
    
    .dashboard-actions {
        display: flex;
        gap: 10px;
    }
    
    .btn {
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.2s;
    }
    
    .btn-primary {
        background: #007bff;
        color: white;
    }
    
    .btn-primary:hover {
        background: #0056b3;
        color: white;
    }
    
    .btn-success {
        background: #28a745;
        color: white;
    }
    
    .btn-success:hover {
        background: #1e7e34;
        color: white;
    }
    
    .btn-danger {
        background: #dc3545;
        color: white;
    }
    
    .btn-danger:hover {
        background: #c82333;
        color: white;
    }
    
    .public-badge {
        background: #e7f3ff;
        color: #0066cc;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 500;
    }
    
    .empty-state {
        text-align: center;
        padding: 60px 20px;
        background: #f8f9fa;
        border-radius: 8px;
        border: 1px dashed #dee2e6;
    }
    
    .empty-state h3 {
        color: #666;
        margin-bottom: 10px;
    }
    
    .empty-state p {
        color: #888;
        margin-bottom: 20px;
    }
    
    /* Modal de confirmación */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }
    
    .modal-overlay.active {
        display: flex;
    }
    
    .modal-confirm {
        background: white;
        border-radius: 12px;
        padding: 30px;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        animation: slideIn 0.3s ease;
    }
    
    @keyframes slideIn {
        from {
            transform: translateY(-50px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .modal-confirm h3 {
        margin: 0 0 15px 0;
        color: #dc3545;
        font-size: 22px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .modal-confirm p {
        color: #666;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .modal-confirm .confirm-input {
        width: 100%;
        padding: 12px;
        border: 2px solid #ddd;
        border-radius: 6px;
        font-size: 15px;
        margin-bottom: 20px;
        transition: border-color 0.2s;
    }
    
    .modal-confirm .confirm-input:focus {
        outline: none;
        border-color: #dc3545;
    }
    
    .modal-confirm .modal-actions {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
    }
    
    .modal-confirm .btn-cancel {
        background: #6c757d;
        color: white;
    }
    
    .modal-confirm .btn-cancel:hover {
        background: #5a6268;
    }


    /* Dashboards Especiales SMA */
    .dashboard-card.card-sma-map {
        border-top: 4px solid #10b981;
        background: linear-gradient(to bottom, #f0fdf4, #ffffff);
    }

    .dashboard-card.card-sma-slideshow {
        border-top: 4px solid #6366f1;
        background: linear-gradient(to bottom, #eef2ff, #ffffff);
    }

    .dashboard-card-title-icon {
        margin-right: 8px;
    }

    /* Modo noche - Lista de dashboards */
    [data-theme="dark"] .dashboard-card {
        background: var(--surface);
        border-color: rgba(255,255,255,.1);
        box-shadow: 0 2px 4px rgba(0,0,0,.2);
    }
    [data-theme="dark"] .dashboard-card:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,.3);
    }
    [data-theme="dark"] .dashboard-title { color: var(--ink); }
    [data-theme="dark"] .dashboard-meta { color: var(--ink-muted); }
    [data-theme="dark"] .empty-state {
        background: var(--surface-2);
        border-color: rgba(255,255,255,.15);
    }
    [data-theme="dark"] .empty-state h3 { color: var(--ink); }
    [data-theme="dark"] .empty-state p { color: var(--ink-muted); }
    [data-theme="dark"] .modal-confirm {
        background: var(--surface);
        box-shadow: 0 10px 40px rgba(0,0,0,.5);
    }
    [data-theme="dark"] .modal-confirm p { color: var(--ink-muted); }
    [data-theme="dark"] .modal-confirm .confirm-input {
        background: var(--surface-2);
        border-color: rgba(255,255,255,.2);
        color: var(--ink);
    }
    [data-theme="dark"] .public-badge {
        background: rgba(67,97,238,.2);
        color: var(--accent, #4cc9f0);
    }

    /* Modo noche - SMA Especiales */
    [data-theme="dark"] .dashboard-card.card-sma-map {
        background: linear-gradient(to bottom, rgba(16, 185, 129, 0.1), var(--surface));
        border-color: rgba(16, 185, 129, 0.3);
    }

    [data-theme="dark"] .dashboard-card.card-sma-slideshow {
        background: linear-gradient(to bottom, rgba(99, 102, 241, 0.1), var(--surface));
        border-color: rgba(99, 102, 241, 0.3);
    }
