﻿.centralizedDashboard .dashboardDrivers {
    height: 202px;
    width: calc(30% - 4px);
    margin-inline-start: 4px;
    margin-bottom: 10px;
    border: 1px solid #1B467B;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 1px 4px rgba(21, 34, 50, 0.08);
    background: #1B467B;
    padding: 10px 20px;
}

    /* title */
    .centralizedDashboard .dashboardDrivers .title {
        display: flex;
        align-items: flex-start;
        flex-flow: 1;
        width: 100%;
    }

        .centralizedDashboard .dashboardDrivers .title img {
            margin-inline-end: 8px;
        }

        .centralizedDashboard .dashboardDrivers .title h3 {
            margin: 0px;
            color: #CED7DF;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .centralizedDashboard .dashboardDrivers .title p {
            color: #FAFAFA;
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 16px;
            text-align: end;
            flex-grow: 2;
        }

    /* DriversProgress */
    .centralizedDashboard .dashboardDrivers .DriversProgress {
        display: flex;
        align-items: stretch;
        gap: 10%;
        justify-content: space-between;
    }

        .centralizedDashboard .dashboardDrivers .DriversProgress div {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .centralizedDashboard .dashboardDrivers .DriversProgress h3 {
            color: #CED7DF;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 400;
        }

        .centralizedDashboard .dashboardDrivers .DriversProgress p {
            margin: 0px;
            font-size: 24px;
            font-weight: 700;
        }

        .centralizedDashboard .dashboardDrivers .DriversProgress .waitingDrivers p {
            color: #FDD141;
        }

        .centralizedDashboard .dashboardDrivers .DriversProgress .BusyDrivers p {
            color: #FF3A29;
        }
