.main-page-div{
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    align-items: center;
    gap: 30px;
    margin-bottom: 100px;
    font-family: sans-serif;
}

table{
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    font-family: sans-serif;
    min-width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    margin-left: auto;
    margin-right: auto;
}

table thead tr {
    background-color: #009879;
    color: #ffffff;
    text-align: left;
}

table th,
table td {
    padding: 12px 15px;
}

table tbody tr {
    border-bottom: 1px solid #dddddd;
}

table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

table tbody tr:last-of-type {
    border-bottom: 2px solid #009879;
}


.accordion-div{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion-div h3{
    margin-bottom: 25px;
    font-size: x-large;
    color: #2c396b;
    font-weight: 400;
}

.accordion {
    background-color: #504b4b;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    font-weight: bold;
    border-radius: 8px;
}

.activate, .accordion:hover {
    background-color: #d54e4e;
}

.accordion:after {
    content: '+';
    color: 'white';
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.activate:after {
    content: "-";
}

.panel {
    padding: 0 18px;
    background-color:#d2ecd3;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    /* text-align: left; */
    border-left: 5px solid #7d7dca;
    color: black;
    text-align: center;
}