/* Checklist Modern UI Theme */

body, .right_col, .main_container, .container {
    font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #f8f9fa !important;
    color: #222;
    font-size: 15px;
}

.whatsapp-icon {
    font-size: 15px; /* or 24px, 28px, etc. */
  }
  .btn i {
    font-size: 2rem;
    color: black;
}
.x_panel, .tile_stats_count, .x_content, .x_title, .fixed_height_320, .tile, .container, .main_container {
    background: #fff !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

table, .table, .main-table {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

table th, table td, .table th, .table td, .main-table th, .main-table td {
    padding: 16px !important;
    vertical-align: middle;
    border: 1px solid #e0e0e0 !important;
    font-size: 15px !important;
    white-space: nowrap;
}

.table th, .table thead th, .main-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #222;
}

.table td, .table tbody td, .main-table td {
    color: #444;
}

.table tr:hover, .main-table tr:hover {
    background: #f1f5fa !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
    color: #222;
    font-weight: 600;
}

.btn, button {
    border-radius: 8px !important;
    font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

@media (max-width: 992px) {
    table th, table td, .table th, .table td, .main-table th, .main-table td {
        padding: 12px !important;
        font-size: 15px !important;
    }
    .btn, button {
        font-size: 15px;
    }
}
.x_title {
   
    padding: 10px 5px 10px;
    
}
@media (max-width: 600px) {
    table th, table td, .table th, .table td, .main-table th, .main-table td {
        padding: 8px !important;
        font-size: 13px !important;
    }
    .btn, button {
        font-size: 13px;
    }
}

/* Sticky first column for client row */
.main-table th:first-child,
.main-table td:first-child {
    position: sticky;
    left: 0;
    background: #fff;
    z-index: 2;
    box-shadow: 2px 0 4px -2px rgba(0,0,0,0.04);
}

@media (max-width: 600px) {
    .main-table th:first-child,
    .main-table td:first-child {
        min-width: 120px;
    }
}

/* Sticky client column using .fixed-side */
.fixed-side {
    position: sticky !important;
    left: 0 !important;
    background: #fff !important;
    z-index: 4 !important;
    box-shadow: 2px 0 4px -2px rgba(0,0,0,0.04);
}

@media (max-width: 600px) {
    .fixed-side {
        min-width: 120px;
    }
}