/* Cashflow-2024 Modern UI Theme */

body, .right_col, .main_container, .container {
    font-family: 'Inter', 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #fff !important;
    color: #222;
    font-size: 14px;
}
.x_title {
   
    padding: 10px 5px 10px;
    
}

.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, #datatable {
    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;
    padding: 30px;
}
table th .table th, #datatable th   {
    padding: 15px !important;
}
table td, .table td,  #datatable td {
    padding: 5px !important;
    vertical-align: middle;
    border: none !important;
    font-size: 14px !important;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.table th, .table thead th, #datatable th {
    background: #f8f9fa;
    font-weight: 600;
    color: #222;
}

.table td, .table tbody td, #datatable td {
    color: #444;
}

.table tr:hover, #datatable tr:hover {
    background: #f1f5fa !important;
    transition: background 0.2s;
}

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: 14px;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

/* Subtle animation for hover/click */
.btn, button, table tr, table td, table th {
    transition: all 0.2s cubic-bezier(.4,0,.2,1);
}

@media (max-width: 992px) {
    table th, table td, .table th, .table td, #datatable th, #datatable td {
        padding: 10px !important;
        font-size: 13px !important;
    }
    .btn, button {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    table th, table td, .table th, .table td, #datatable th, #datatable td {
        padding: 6px !important;
        font-size: 12px !important;
    }
    .btn, button {
        font-size: 12px;
    }
} 