/* =====================================================
   Control de Adeudos de Terrenos v2.0
   Mobile-First Design System
   ===================================================== */

:root {
    --primary: #1B4332;
    --primary-light: #2D6A4F;
    --primary-dark: #0D2818;
    --accent: #52B788;
    --accent-light: #95D5B2;
    --warm: #DDA15E;
    --warm-light: #FEFAE0;
    --bg: #F1FAEE;
    --white: #FFFFFF;
    --text: #1B1B1E;
    --text-muted: #6B705C;
    --text-light: #999;
    --border: #E8E8E0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --sidebar-width: 260px;
    /* Status colors */
    --status-active: #D8F3DC;
    --status-active-border: #52B788;
    --status-arrear: #FFE0B2;
    --status-arrear-border: #F4A261;
    --status-cancelled: #FFCDD2;
    --status-cancelled-border: #E57373;
    --status-paid: #BBDEFB;
    --status-paid-border: #64B5F6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); -webkit-font-smoothing: antialiased; }

/* ==================== LOGIN ==================== */
.login-page { min-height: 100vh; display: flex; }
.login-branding {
    flex: 0 0 55%; display: flex; flex-direction: column; justify-content: center; padding: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    color: white; position: relative; overflow: hidden;
}
.login-branding::before {
    content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.05); top: -100px; right: -100px;
}
.login-branding::after {
    content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.03); bottom: -80px; left: -80px;
}
.login-branding-content { position: relative; z-index: 1; }
.login-branding h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; }
.login-branding h2 { font-size: 1.1rem; font-weight: 400; opacity: 0.85; margin-bottom: 24px; }
.login-branding p { font-size: 1rem; opacity: 0.7; font-style: italic; margin-bottom: 40px; }
.login-features { display: flex; gap: 24px; }
.login-feature { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; opacity: 0.8;
    background: rgba(255,255,255,0.1); padding: 10px 16px; border-radius: 50px; }
.login-feature i { font-size: 1rem; }
.login-form-side {
    flex: 0 0 45%; display: flex; align-items: center; justify-content: center;
    padding: 40px; background: var(--white);
}
.login-card { width: 100%; max-width: 380px; }
.login-icon {
    width: 72px; height: 72px; border-radius: 20px; margin: 0 auto 28px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white; box-shadow: 0 8px 24px rgba(27,67,50,0.3);
}
.login-card h3 { text-align: center; font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.login-card p { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; }
.login-field { position: relative; margin-bottom: 20px; }
.login-field i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; }
.login-field input {
    width: 100%; padding: 14px 16px 14px 44px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-size: 0.95rem; font-family: inherit; transition: var(--transition); background: var(--bg);
}
.login-field input:focus { border-color: var(--accent); background: var(--white); outline: none; box-shadow: 0 0 0 4px rgba(82,183,136,0.15); }
.login-remember { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 0.85rem; color: var(--text-muted); }
.login-btn {
    width: 100%; padding: 15px; background: var(--primary); color: white; border: none;
    border-radius: var(--radius-sm); font-size: 1rem; font-weight: 600; cursor: pointer;
    transition: var(--transition); font-family: inherit;
}
.login-btn:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.login-version { text-align: center; color: var(--text-light); font-size: 0.75rem; margin-top: 32px; }
.login-error { background: var(--status-cancelled); color: #C62828; padding: 12px 16px; border-radius: var(--radius-xs);
    font-size: 0.85rem; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }

@media (max-width: 991.98px) {
    .login-branding { display: none; }
    .login-form-side { flex: 1; background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%); }
    .login-card { background: var(--white); padding: 36px 28px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
}

/* ==================== SIDEBAR (Desktop) ==================== */
.sidebar {
    position: fixed; top: 0; left: 0; bottom: 0; width: var(--sidebar-width);
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white; z-index: 1050; box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    display: flex; flex-direction: column; overflow-y: auto;
}
.sidebar-header { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-logo { width: 38px; height: 38px; background: linear-gradient(135deg, var(--accent), var(--warm));
    border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.sidebar-header h5 { margin: 0; font-weight: 700; font-size: 1rem; }
.sidebar-header small { opacity: 0.5; font-size: 0.75rem; }
.sidebar-nav { padding: 12px 0; flex-grow: 1; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 12px; padding: 12px 24px;
    color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition);
    font-weight: 500; font-size: 0.9rem; border-left: 3px solid transparent;
}
.sidebar-nav a:hover { color: white; background: rgba(255,255,255,0.06); }
.sidebar-nav a.active { color: white; background: rgba(255,255,255,0.1); border-left-color: var(--accent); }
.sidebar-nav a i { width: 20px; text-align: center; }
.sidebar-user { padding: 14px 20px; border-top: 1px solid rgba(255,255,255,0.08); background: rgba(0,0,0,0.15); }
.user-avatar { width: 30px; height: 30px; background: rgba(255,255,255,0.12); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }

/* ==================== BOTTOM NAV (Mobile) ==================== */
.bottom-nav {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
    background: var(--white); border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
.bottom-nav-items { display: flex; justify-content: space-around; }
.bottom-nav-item {
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding: 8px 12px; text-decoration: none; color: var(--text-muted);
    font-size: 0.65rem; font-weight: 500; transition: var(--transition); min-width: 60px;
}
.bottom-nav-item i { font-size: 1.2rem; }
.bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item.active i { color: var(--accent); }

@media (max-width: 991.98px) {
    .sidebar { display: none; }
    .bottom-nav { display: block; }
    .main-content { margin-left: 0 !important; padding-bottom: 80px !important; }
}

/* ==================== MAIN CONTENT ==================== */
.main-content { margin-left: var(--sidebar-width); padding: 28px; min-height: 100vh; }
@media (max-width: 991.98px) { .main-content { padding: 20px 16px 90px; } }

/* ==================== MOBILE TOPBAR ==================== */
.mobile-topbar {
    display: none; background: var(--primary); color: white; padding: 14px 16px;
    margin: -20px -16px 20px; align-items: center; gap: 12px;
}
@media (max-width: 991.98px) { .mobile-topbar { display: flex; } }
.mobile-topbar .btn-link { color: white; text-decoration: none; }

/* ==================== PAGE HEADER ==================== */
.page-header { margin-bottom: 24px; }
.page-header h1 { font-size: 1.5rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 10px; }
.page-header h1 i { color: var(--accent); }
.page-header p { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
@media (max-width: 575.98px) { .page-header h1 { font-size: 1.25rem; } }

/* ==================== HERO BANNER ==================== */
.hero-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light), var(--accent));
    border-radius: var(--radius); padding: 28px 24px; color: white; margin-bottom: 24px;
    position: relative; overflow: hidden;
}
.hero-banner::before {
    content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%;
    background: rgba(255,255,255,0.06); top: -60px; right: -40px;
}
.hero-banner h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 4px; position: relative; z-index: 1; }
.hero-banner p { font-size: 0.85rem; opacity: 0.8; position: relative; z-index: 1; }
@media (max-width: 575.98px) {
    .hero-banner { padding: 20px 16px; margin-bottom: 16px; }
    .hero-banner h2 { font-size: 1.1rem; }
}

/* ==================== STAT CARDS ==================== */
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 24px; }
@media (max-width: 991.98px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px; } }

.stat-card {
    background: var(--white); border-radius: var(--radius-sm); padding: 16px;
    box-shadow: var(--shadow-sm); transition: var(--transition); border-left: 4px solid transparent;
    opacity: 0; animation: fadeIn 0.4s ease forwards;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-card .stat-icon { font-size: 1.2rem; margin-bottom: 8px; }
.stat-card .stat-number { font-size: 1.8rem; font-weight: 800; line-height: 1; }
.stat-card .stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-top: 4px; }

.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: 0.05s; }
.stat-card:nth-child(3) { animation-delay: 0.1s; }
.stat-card:nth-child(4) { animation-delay: 0.15s; }
.stat-card:nth-child(5) { animation-delay: 0.2s; }

.card-clientes { border-left-color: var(--primary); }
.card-clientes .stat-icon { color: var(--primary); }
.card-atraso { border-left-color: #F4A261; }
.card-atraso .stat-icon, .card-atraso .stat-number { color: #E76F51; }
.card-sin-atraso { border-left-color: var(--accent); }
.card-sin-atraso .stat-icon, .card-sin-atraso .stat-number { color: var(--accent); }
.card-libres { border-left-color: #64B5F6; }
.card-libres .stat-icon, .card-libres .stat-number { color: #1976D2; }
.card-liquidados { border-left-color: var(--warm); }
.card-liquidados .stat-icon, .card-liquidados .stat-number { color: var(--warm); }

/* ==================== COLONY ACCORDIONS ==================== */
.colony-section { margin-bottom: 16px; }
.colony-accordion { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; margin-bottom: 8px; }
.colony-header {
    padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; transition: var(--transition); font-weight: 600; font-size: 0.9rem;
}
.colony-header:hover { background: rgba(0,0,0,0.02); }
.colony-header .colony-name { display: flex; align-items: center; gap: 8px; }
.colony-header .colony-count { background: var(--primary); color: white; font-size: 0.75rem;
    padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.colony-header .chevron { transition: var(--transition); color: var(--text-muted); }
.colony-header.active .chevron { transform: rotate(180deg); }
.colony-body { display: none; padding: 0 16px 14px; }
.colony-body.show { display: block; }
.colony-stat { display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.colony-stat.clickable { cursor: pointer; transition: var(--transition); border-radius: var(--radius-xs); padding: 8px 10px; margin: 2px -10px; }
.colony-stat.clickable:hover { background: rgba(27, 67, 50, 0.08); }
.colony-stat:last-child { border-bottom: none; }
.colony-stat-label { display: flex; align-items: center; gap: 6px; color: var(--text-muted); }
.colony-stat-value { font-weight: 700; }

/* ==================== CLIENT CARDS (Mobile) ==================== */
.client-cards { display: none; }
@media (max-width: 991.98px) { .client-cards { display: block; } .client-table-wrapper { display: none; } }

.search-bar { position: sticky; top: 0; z-index: 10; margin-bottom: 12px; }
.search-bar input {
    width: 100%; padding: 14px 16px 14px 44px; border: 2px solid var(--border);
    border-radius: var(--radius); font-size: 0.95rem; background: var(--white);
    transition: var(--transition); font-family: inherit;
}
.search-bar input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 4px rgba(82,183,136,0.15); }
.search-bar i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--text-muted); }

.filter-pills { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 12px; -webkit-overflow-scrolling: touch; }
.filter-pills::-webkit-scrollbar { display: none; }
.filter-pill {
    white-space: nowrap; padding: 7px 14px; border-radius: 20px; font-size: 0.78rem;
    font-weight: 600; border: 2px solid var(--border); background: var(--white);
    cursor: pointer; transition: var(--transition); color: var(--text-muted);
}
.filter-pill.active, .filter-pill:hover { background: var(--primary); color: white; border-color: var(--primary); }

.client-card {
    background: var(--white); border-radius: var(--radius-sm); padding: 16px;
    margin-bottom: 10px; box-shadow: var(--shadow-sm); border-left: 4px solid transparent;
    transition: var(--transition);
}
.client-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.client-card-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.client-card-badge {
    font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
    white-space: nowrap; text-transform: uppercase; letter-spacing: 0.3px;
}
.badge-activo { background: var(--status-active); color: #2E7D32; }
.badge-atraso { background: var(--status-arrear); color: #E65100; }
.badge-cancelado { background: var(--status-cancelled); color: #C62828; }
.badge-liquidado { background: var(--status-paid); color: #1565C0; }

.client-card-details { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }
.client-card-detail { display: flex; align-items: center; gap: 6px; }
.client-card-detail i { width: 14px; text-align: center; color: var(--accent); font-size: 0.75rem; }
.client-card-actions { display: flex; gap: 8px; }

.status-active { border-left-color: var(--status-active-border); }
.status-arrear { border-left-color: var(--status-arrear-border); }
.status-cancelled { border-left-color: var(--status-cancelled-border); }
.status-paid { border-left-color: var(--status-paid-border); }

/* ==================== TABLE (Desktop) ==================== */
.client-table-wrapper { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
table.dataTable thead th {
    background: var(--primary) !important; color: white !important; font-weight: 600;
    font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; border: none !important; padding: 12px 14px !important;
}
table.dataTable tbody td { vertical-align: middle; font-size: 0.85rem; padding: 10px 14px !important; border-bottom: 1px solid var(--border); }
.row-sin-atraso { background-color: var(--status-active) !important; }
.row-con-atraso { background-color: var(--status-arrear) !important; }
.row-cancelado { background-color: var(--status-cancelled) !important; }
.row-liquidado { background-color: var(--status-paid) !important; }
.dataTables_wrapper { padding: 16px; }
.dataTables_wrapper .dataTables_filter input { border-radius: var(--radius-xs); border: 2px solid var(--border); padding: 6px 12px; }
.dataTables_wrapper .dataTables_filter input:focus { border-color: var(--accent); outline: none; }

.meses-input { width: 70px !important; text-align: center; font-weight: 700; border: 2px solid var(--border); border-radius: var(--radius-xs); }
.meses-input:focus { border-color: var(--accent); outline: none; }
.estatus-select { width: 120px !important; font-size: 0.82rem; font-weight: 600; border: 2px solid var(--border); border-radius: var(--radius-xs); }

/* ==================== BUTTONS ==================== */
.btn-main {
    background: var(--primary); color: white; border: none; font-weight: 600;
    padding: 10px 20px; border-radius: var(--radius-sm); transition: var(--transition);
    font-size: 0.88rem; font-family: inherit; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.btn-main:hover { background: var(--primary-light); color: white; transform: translateY(-1px); }

.btn-whatsapp {
    background: #25D366; color: white; border: none; padding: 8px 14px; border-radius: var(--radius-xs);
    font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: var(--transition);
    display: inline-flex; align-items: center; gap: 5px; font-family: inherit;
}
.btn-whatsapp:hover { background: #1DAE52; color: white; transform: translateY(-1px); }

.fab {
    position: fixed; bottom: 90px; right: 20px; z-index: 1040;
    width: 56px; height: 56px; border-radius: 50%; border: none;
    background: var(--primary); color: white; font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(27,67,50,0.35); cursor: pointer;
    transition: var(--transition); display: none;
}
.fab:hover { transform: scale(1.1); }
@media (max-width: 991.98px) { .fab { display: flex; align-items: center; justify-content: center; } }
@media (min-width: 992px) { .fab { display: none; } }

/* ==================== COLONY CARDS ==================== */
.colony-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
@media (max-width: 575.98px) { .colony-card-grid { grid-template-columns: 1fr; } }
.colony-card {
    background: var(--white); border-radius: var(--radius-sm); padding: 18px;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    display: flex; justify-content: space-between; align-items: center;
}
.colony-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.colony-card-info h3 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.colony-card-info p { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.colony-card-actions { display: flex; gap: 6px; }

/* ==================== LOTES LIBRES ==================== */
.lote-list { display: grid; gap: 8px; }
.lote-item {
    background: var(--white); border-radius: var(--radius-sm); padding: 14px 16px;
    box-shadow: var(--shadow-sm); display: flex; justify-content: space-between; align-items: center;
}
.lote-item-info { font-size: 0.88rem; }
.lote-item-info strong { color: var(--text); }
.lote-item-info span { color: var(--text-muted); font-size: 0.82rem; }
.filter-bar { margin-bottom: 16px; }
.filter-bar select {
    padding: 10px 14px; border: 2px solid var(--border); border-radius: var(--radius-sm);
    font-size: 0.9rem; background: var(--white); width: 100%; max-width: 300px;
    font-family: inherit; transition: var(--transition);
}
.filter-bar select:focus { border-color: var(--accent); outline: none; }

/* ==================== MODALS ==================== */
.modal-header { background: var(--primary); color: white; border: none; padding: 18px 24px; }
.modal-header .modal-title { font-weight: 600; font-size: 1.05rem; }
.modal-header .btn-close { filter: brightness(0) invert(1); }
.modal-content { border: none; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.modal-body { padding: 24px; }
.modal-footer { border-top: 1px solid var(--border); padding: 14px 24px; }

/* ==================== FLASH & TOAST ==================== */
.flash-message { border-radius: var(--radius-sm); border: none; box-shadow: var(--shadow-sm); animation: slideDown 0.3s ease; }
.toast-notif {
    position: fixed; top: 16px; right: 16px; z-index: 9999; min-width: 240px;
    padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.85rem; font-weight: 500;
    box-shadow: var(--shadow-md); animation: slideDown 0.3s ease; display: flex; align-items: center; gap: 8px;
}

/* ==================== EMPTY STATE ==================== */
.empty-state { text-align: center; padding: 48px 24px; }
.empty-state i { font-size: 3rem; color: var(--accent-light); margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.empty-state p { color: var(--text-muted); font-size: 0.88rem; }

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ==================== ACTION BUTTONS ==================== */
.btn-icon {
    width: 36px; height: 36px; border-radius: var(--radius-xs); border: 1px solid var(--border);
    display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
    transition: var(--transition); background: var(--white); font-size: 0.82rem; color: var(--text-muted);
}
.btn-icon:hover { background: var(--bg); }
.btn-icon.edit:hover { color: var(--primary); border-color: var(--primary); }
.btn-icon.delete:hover { color: #E53935; border-color: #E53935; }

/* ==================== MULTIPLE PHONES DESIGN ==================== */
.phone-list-minimal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
    align-items: center;
}
.phone-item-minimal {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
}
.phone-link {
    color: var(--primary) !important;
    text-decoration: none !important;
    font-family: monospace;
    font-weight: 600;
    transition: var(--transition);
}
.phone-link:hover {
    color: var(--accent) !important;
    text-decoration: underline !important;
}
.btn-whatsapp-text {
    background-color: #25D366;
    color: white !important;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    text-decoration: none !important;
    padding: 4px 8px;
    border-radius: var(--radius-xs);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    line-height: 1.2;
}
.btn-whatsapp-text:hover {
    background-color: #1DAE52;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Specific styles for phone rows in mobile cards */
.client-card-phone-row {
    grid-column: span 2;
    margin-top: 6px;
    border-top: 1px dashed var(--border);
    padding-top: 8px;
}
