.metrics-dashboard {
    background-color: transparent;
    margin-left: 40px;
    margin-top: 10px;
    align-items: center;
    border-collapse: separate;
}
.metrics-dashboard tr {
    display: flex;
    justify-content: start;
    gap: 10px;
    margin-bottom: 10px;
}

.metric-cell {
    display: table-cell;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;
    border-color: #eeeeee;
    border-radius: 10px;
    box-shadow: 0 2px 4px #cccccc;
    min-width: 210px;
    box-sizing: border-box;
}

.metric-value {
    font-size: 16px;
    font-weight: bold;
    color: black;
}

.metric-coming-soon {
    font-size: 1em;
    font-weight: bold;
    color: black;
    line-height: 32px;
}

.metric-qatest {
    font-size: 1em;
    font-weight: bold;
    color: black;
    line-height: 32px;
}

.metric-label {
    font-size: 0.9em;
    color: #333333;
}

.multiple-metrics-container {
    display: flex;
    justify-content: start;
    flex-wrap: nowrap;
    background-color: transparent;
    margin-left: 40px;
    margin-top: 10px;
    margin-bottom: 20px;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
}

.multiple-metric-card {
    background-color: #fff;
    border: 1px solid #ddd;
    min-width: 210px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.multiple-metric-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.multiple-metric-value {
    text-align: left;
    font-size: 16px;
    padding-right: 8px;
    width: 50%;
}

.multiple-metric-description {
    text-align: left;
    font-size: 16px;
    color: #666;
    width: 50%;
}