.main-container {
    width: 100%;  /* Make it take full iframe width */
    height: 100%;  /* Full height of viewport */
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
    box-sizing: border-box; /* Prevents extra width issues */
}

.dash-cell {
    font-family: Arial, sans-serif; 
    font-size: 11px;
    text-align: center!important;
}

.dash-header {
    background-color: lightgrey!important; 
    font-size: 13px; 
    font-family: Arial, sans-serif; 
    text-align: center!important;
}

.kpi-header-text {
    font-size: 20px;
    color: black;
}

.kpi-stat-box {
    font-size: 25px;
    font-weight: bold;
    text-align: center;
    line-height: 150px;
    height: 150px;
    width: 150px;
    border: 2px solid;
    border-radius: 8px;
    background-color: #f8f9fa;
    margin: auto;
}

.kpi-flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dashboard-title, .table-title {
    color: black;
}

html, body {
    height: 100%; /* Make sure the root elements take up full height */
    margin: 0;
    padding: 0;
}

#_dash-app-content {
    width: 100% !important; /* Override inline Dash styles */
    height: auto !important;
}


