/* style.css */

.navbar {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: bold;
}

.navbar a {
    margin-right: 3rem;
}

.progress-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #fff;
}

.progress-circle.filled {
    background-color: green;
    color: white;
    border-color: green;
}

.circle-number {
    font-size: 16px;
    font-weight: bold;
}

.circle-label {
    position: absolute;
    top: 60px;
    width: 100%;
    text-align: center;
    font-size: 12px;
}

.custom-container {
    margin-left: 15px;
    margin-right: 15px;
}

