/*#region Comparison*/
    .comparison-container {
        width:100%;
        margin: 20px auto;
        text-align: center;
        font-family: Helvetica;
        background: #000;
        color: #fff;
        padding: 20px;
        border: 2px solid #fff;
    }
    .comparison-title {
        font-size: 18px;
        margin-bottom: 20px;
        border-bottom: 1px solid #fff;
        padding-bottom: 10px;
    }
    .comparison-bar {
        position: relative;
        height: 30px;
        border: 2px solid #fff;
        overflow: hidden;
        background: #333;
        margin-top: 20px;
    }
/*#endregion*/

/*#region Podium*/
    .podium-container {
        width: 100%;
        margin: 20px auto;
        background: #000;
        color: #fff;
        padding: 20px;
        text-align: center;
        font-family: Helvetica;
        border: 2px solid #fff;
    }
    .podium-container h3 {
        margin: 0 0 20px;
        text-align: center;
        border-bottom: 2px solid #fff;
        padding-bottom: 10px;
        color:white !important;
    }
    .podium {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 10px;
        margin: 20px 0;
    }
    @keyframes rainbow-color {
0% { color: #cd7f32; } /* Bronze */
    33% { color: #c0c0c0; } /* Silver */
    66% { color: #ffd700; } /* Gold */
    100% { color: #cd7f32; } /* Back to Bronze */
}

.podium .icon {
    font-size: 30px;
    animation: rainbow-color 5s infinite linear;
}

    .podium .place {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        background: black;
        color: white;
        width: 80px;
        height: 200px;
        border: 2px solid #fff;
        position: relative;
        font-weight: bold;
    }

.podium .place:nth-child(2) {
    height: 250px;
    order: -1; /* Moves second place to the left */
}

.podium .place:nth-child(1) {
    height: 300px;
    order: 0; /* Keeps first place in the center */
}

.podium .place:nth-child(3) {
    height: 200px;
    order: 1; /* Moves third place to the right */
}

    .student-name {
        margin-top: 10px;
        font-size: 14px;
    }
    .student-name a {
        color: #fff;
        text-decoration: none;
    }
/*#endregion*/

/*#region Progress*/
    .infoteacherpaycontainer{
        display:flex;
        widht:100%;
        gap:10px;
    }
    @media only screen and (max-width: 600px) {  
    .infoteacherpaycontainer{
        display:block;
        widht:100%;
        gap:0px;
    }

  }
    .teacher-progress {
        background: #000;

        color: #fff;
        padding: 20px;
        font-family: Helvetica;
        width: 100%;
        margin: 20px auto;
        border: 2px solid #fff;
    }
    .teacher-progress h3 {
        margin-top: 0;
        color:white !important;
        text-align: center;
        border-bottom: 1px solid #fff;
        padding-bottom: 10px;
    }
    .teacher-progress .metric {
        margin-bottom: 20px;
    }
    .teacher-progress .metric p {
        margin: 5px 0;
    }
    .progress-container {
        background: #fff;
        border-radius: 5px;
        overflow: hidden;
        margin: 5px 0;
        border: 2px solid #000;
    }
    .progress-bar {
        height: 20px;
        background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet);
        background-size: 400% 400%;
        animation: rainbow 5s ease infinite;
        width: 0%;
    }

    @keyframes rainbow {
      0%{background-position:0% 50%;}
      50%{background-position:100% 50%;}
      100%{background-position:0% 50%;}
    }

    .progress-label {
        font-size: 14px;
        font-weight: bold;
        margin-bottom: 5px;
    }
/*#endregion*/

/*#region Payment*/
#paymentInfo {
    margin-bottom: 20px;
    width:100%;
font-family:helvetica;
        justify-content: center;
    align-items: center;
    margin:auto 0;
}

.payment-info-container {
    margin-bottom: 10px;
    border: 2px solid #fff;
    background: #333;

}

.payment-info-wrapper {
    background: #000;
    width: 100%;
      height: 100%;
    text-align: center;
    padding:5%;
}

.total-payment {
    color: white;
}
/*#endregion*/