* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

body {
    position: relative;
    min-height: 80vh;
}

.options {
    display: flex;
    flex-direction: column;
    width: 250px;
    column-gap: 20px;
    row-gap: 20px;
    margin: 60px auto;
}

a.a-btn {
    text-align: center;
    padding: 15px;
    background-color: lightseagreen;
    color: azure;
    border-radius: 15px;
    outline: none;
}

.btn {
    cursor: pointer;
    border: none;
    text-align: center;
    padding: 10px;
    background-color: lightseagreen;
    color: azure;
    border-radius: 10px;
    outline: none;

}

.loaderImage {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 50%;
}

#listContainer {
    width: 95%;
    max-width: 400px;
    margin: 20px auto;
}

#listContainer .listItem {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    background-color: lightcyan;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
}

#listContainer .listItem.pending {
    background-color: lightgoldenrodyellow;
}

#listContainer .listItem.pending .btn {
    background-color: rgb(199, 199, 61);
}

#listContainer .listItem.notyet {
    background-color: rgb(255, 215, 215);
}

#listContainer .listItem.notyet .btn {
    background-color: rgb(207, 80, 80);
}

#listContainer .listItem .info {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 5px;
}


#listContainer .listItem .info .name {
    font-weight: bold;
}

.no_data {
    font-size: large;
    text-align: center;
}

.formContainer {
    height: auto;
    width: fit-content;
    margin: 0 auto;
}

#personInfo {
    position: fixed;
    top: 60px;
    left: 0;
    z-index: 999;
    padding: 0 20px;
    /* transform: translateX(-50%); */
    height: 100vh;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    overflow: scroll;
}

#personInfo .infoSection {
    background-color: lightcyan;
    padding: 10px;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    border-radius: 5px;
}


#personInfo .infoSection .infoItem {
    display: flex;
    justify-content: flex-start;
    column-gap: 10px;
}

#memberForm {
    /* width: fit-content; */
    max-width: 700px;
    margin: 30px auto;
}

#memberForm .memberSection {
    text-align: center;
    border-radius: 10px;
    background-color: lightcyan;
    padding: 0 10px;
    padding-bottom: 20px;
    margin: 30px 0;
}


#memberForm .memberSection .memberHead {
    background-color: lightseagreen;
    display: inline-block;
    font-size: 24px;
    text-align: center;
    color: #fff;
    padding: 5px 55px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    margin-bottom: 15px;
}

.teamListContainer .listItem {
    display: flex;
    flex-direction: column;
}

.teamListContainer .listItem .info.top {
    display: flex;
    flex-direction: row !important;
    justify-content: space-between !important;
    column-gap: 10px;
    align-items: center;
    padding-bottom: 10px;
}

.contentBody {
    margin: 0 auto;
    max-width: 500px;
}

.contentBody h3 {
    text-align: center;
    margin-top: 30px;
    letter-spacing: 10px;
    font-size: 32px;
    /* text-transform: uppercase; */
}

#listParent {
    padding: 30px;
}

#listParent li {
    margin: 10px 0;
    background-color: lightseagreen;
    color: #fff;
    list-style: none;
    padding: 15px 10px;
    line-height: 30px;
    border-radius: 10px;
    text-align: justify;
}

.searchBox {
    width: 95%;
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    column-gap: 10px;
}

#search {
    width: 100%;
    outline: none;
    border: 1px solid #eee;
    padding: 10px;
}

.teamCount {
    text-align: center;
}

.navbar {
    background-color: lightseagreen;
}

.nav-item {
    padding: 0 20px;
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
    /* background: lightcyan;
    border-radius: 10px;
    margin: 0 5px; */
}

.nav-item a {
    color: #fff !important;
}

.footer {
    padding: 15px 30px;
    background-color: lightseagreen;
    color: #fff;
    text-align: right;
}

.footer a {
    color: rgb(255, 255, 0);
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333333b7;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    right: 2%;
    bottom: 5%;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@media only screen and (max-width: 600px) {
    #personInfo {
        left: 50%;
        transform: translateX(-50%);
    }
}