html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #e8eaf2;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
}

    .container {
        text-align: center;
        background: #ffffff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 80%;
        max-width: 300px;
    }

    .title-section h2 {
        font-size: 1.4rem;
        margin-bottom: 60px;
        color: #222;
        font-weight: bold;
    }

    .progress-section {
        margin: 20px 0;
    }

.progress-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0px;
}

.progress-container {
    position: relative;
    width: 95%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    position: absolute;
    height: 100%;
    width: 0;
    background-color: #4caf50;
    transition: width 0.3s ease;
}


    .info-section h4 {
        font-size: 0.9rem;
        color: #555;
        margin-top: 15px;
        line-height: 1.5;
    }

    .info-section h4 b {
        color: #007bff;
    }