
/* table section */

.table-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.table-data{
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    width: 80%;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.table-data:nth-child(2) thead tr{
    background-color: #37353E;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.table-data thead tr{
    background-color: #009879;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.table-data th,
.table-data td{
    padding: 12px 15px;
    font-size: 20px;
}

.table-data tbody tr{
    border-bottom: 1px solid #dddddd;
}

.table-data tbody tr:nth-of-type(even){
    background-color: #f3f3f3;
}

.table-data tbody tr:last-of-type{
    border-bottom: 2px solid #009879;
}

.table-data:nth-child(2) tbody tr:last-of-type{
    border-bottom: 2px solid #37353E;
}

.table-data tbody tr.active-row{
    font-weight: bold;
    color: #009879;
}



/* exam cards */

.faqs-box{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    width: 100%;
}

.faqs{
    border: 1px solid #717171;
    /* padding: 25px; */
    border-radius: 8px;
    width: 80%;
}

.faqs-items{
    list-style-type: none;
    padding: 10px;
    background-color: transparent;
}

.faqs-items>p{
    color: #2d3436;
    font-weight: 500;
}

.faqs-items:nth-of-type(even){
    background-color: #2d3436;
}

.faqs-items:nth-of-type(even)>p{
    color: #fff;
}