/* .main_container {
    margin-bottom: 8rem;
} */

.main_container {
    display: grid !important;
    grid-template-columns: auto auto !important;
}

#Records .records{
    display: flex;
    flex-direction: column;
    background-color: rgb(232, 224, 224);
    width: 350px;
    height: 100%;
    font-size: 18px;
    border-radius: 15px;
}

.records {
    height: fit-content;
}

@media only screen and (max-width:768px){
    .main_container{
        display: flex;
        flex-direction: column;
    }
}
#Records  a{
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 20px;
}
#Records  a:hover{
    color: #fff;
}
.text {
    display: flex;
    flex-direction: column; 
    text-align: center;
}
.text a {
    text-decoration: none;
    cursor: pointer;
    padding: 5px 10px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 5px;
    margin: 5px;
}
.blocks .content {
    display: none;
    padding: 18px;
    border-radius: 5px;
    margin-left: 30px;
}

@keyframes clockwise {
    0% {
        top: -5px;
        left: 0;
    }
    12% {
        top: -2px;
        left: 2px;
    }
    25% {
        top: 0px;
        left: 5px;
    }
    37% {
        top: 2px;
        left: 5px;
    }
    50% {
        top: 5px;
        left: 0;
    }
    67% {
        top: 2px;
        left: -2px;
    }
    75% {
        top: 0px;
        left: -5px;
    }
    87% {
        top: -2px;
        left: -2px;
    }
    100% {
        top: -5px;
        left: 0;
    }
}
.content h1 {
    text-align: center;
}

/* Styles specific to desktop (horizontal layout) */
@media (min-width: 769px) {
    .main_container {
        display: flex;
        flex-direction: column; /* Switch to horizontal layout */
    }
    .text {
        flex-direction: column;
    }
}

/* Styles specific to mobile (vertical layout) */
@media (max-width: 768px) {
    .text a {
        width: 100%; /* Expand links to full width in the vertical layout */
    }
    .navbar-brand img {
        max-width: 100px; /* Adjust the max-width as needed */
    }
}

.main_container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .main_container {
        display: flex !important;
        flex-direction: column !important;
        width: 100%;
        margin-bottom: 10px;
    }
}
.menu-wrapper , .wrapper-content {
    width: 100%;
    /* appearance: none; */
}
.main_container .records {
    display: flex;
    flex-direction: column;
    /* width: 100%; */
    background-color: #b9b3b3;
}
.main_container .records a{
    padding: 15px;
    text-decoration: none;
    color: #fff;
    padding: 20px;
    border-bottom: 3px solid #fff;
}
.main_container ul li {
    list-style: decimal;
}
select {
    width: 30%;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* .data {
    display: none;
} */


.table-bordered {
    width: 100%;
}
.table-bordered h3 {
    font-size: 23px;
}