/* sla.css */

.center-text::after {
    content: '%';
    font-size: 60%;
}

.centered-text {
    width: 60%;
    margin: 0 auto;
}

.centered-text ul{
    padding-left:20px;
    margin-left:10px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.chart-container {
    width: 300px;
    margin-bottom: 20px;
    text-align: center;
    padding: 16px;
}

.chart-title {
    font-size: 12px;
    margin-bottom: 10px;
}

.chart-center-text {
    font-size: 18px;
    font-weight: bold;
}

.chart-container {
    position: relative;
}

.center-text {
    font-size: 2rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.uptime-text {
    display: none;
}

.total-uptime {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

#total-uptime {
    text-align: center;
    margin-bottom: 40px;
}

#total-uptime-label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

#total-uptime-value {
    font-size: 48px;
    font-weight: bold;
    color: #333;
}

#total-uptime-percent {
    font-size: 24px;
    color: #666;
}

.footer-link1, .footer-navlink, .footer-navlink1, .footer-container2{
    font-weight: 600;
    font-size: 0.8rem;
    margin-left:1rem;
}



@media screen and (min-width: 768px) {
    .center-text {
        font-size: 1.4rem;
    }

    #charts-container {
        max-width: 1110px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .chart-container {
        width: calc(16.666% - 20px);
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .chart-container {
        width: 50%;
        display: inline-block;
        box-sizing: border-box;
        padding: 5px;
    }

    .chart-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
