.btns {
    margin: 0;
    padding: 0;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.btns .btn {
    /* margin: 5px; */
    font-size: 34px;
    font-weight: bold;
    /* background: #EA8E00; */
    background-size: cover;
    width: 250px;
    height: 260px;
    padding: 120px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: transparent;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 50px 50px -50px rgba(0, 0, 0, 0.1);
    -webkit-transform-duration: 0.3s;
    transform-duration: 0.3s;
    -webkit-transform-property: box-shadow, transform;
    transform-property: box-shadow, transform;
    /* flex: 1 0 20em; */
}

.btns .btn:hover,
.btns .btn:focus,
.btns .btn:active {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.content-table1 {
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 1.2em;
    min-width: 400px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.content-table1 thead tr {
    background-color: #ea8e00;
    color: #fff;
    text-align: left;
    font-weight: bold;
}

.content-table1 th,
.content-table1 td {
    padding: 12px 15px;
}

.content-table1 tbody tr {
    border-bottom: 1px solid #dddd;
}

.content-table1 tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.content-table1 tbody tr:last-of-type {
    border-bottom: 2px solid #ea8e00;
}

.content-table1 tbody tr.active-row {
    font-weight: bold;
    color: #ea8e00;
}

.download-btn {
    background: #ea8e00;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    padding: 10px;
}

.table-box {
    margin-top: 100px;
    margin-left: 20%;
    margin-right: 20%;
}

.table-heading {
    text-align: center;
    color: #ea8e00;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 80px;
}

.btn-back {
    text-align: center;
    margin-bottom: 50px;
}

.btn-back a {
    background-color: #ea8e00;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 2rem;
}