.rankings {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.ranking {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}
.ranking-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #98CA48;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 26px;
}

.ulq {
    list-style-type: none;
    padding: 0;
}
.ulq .liq {
    background: #fff;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.subjects {
    list-style-type: none;
    padding: 0;
}
.subject {
    background: #fff;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}
.progress-bar {
    height: 20px;
    border-radius: 10px;
    text-align: center;
    line-height: 20px;
    color: white;
}
.performance {
    margin-top: 20px;
}

.question-container {
    background: #fff;
    margin: 10px;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.question {
    margin-bottom: 20px;
    padding: 10px;
    background: #eee;
    border-radius: 8px;
    font-size: 18px;
}
.options {
    list-style-type: none;
    padding: 0;
}
.options li {
    background: #fff;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.options li:hover {
    background-color: #f0f0f0;
}
.submit-button {
    background-color: 98CA48;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
}