.header-top {
    display: flex;
    background: #0C2F1F; 
    height: 100px;
    align-items: center;
    padding: 0 15%;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.login-form {
    display: flex;
    gap: 10px;
}

.login-form input {
    width: 150px;
    padding: 5px 10px;
}

.login-form button {
    border: none;
    font-weight: bold;
    padding: 0 25px;
    border-radius: 4px;
}

.btn-green {
    background-image: linear-gradient(#37AD6A 20%,#1F6B34 80%,#1F6B34 100%);
    color: white;
}

.btn-blue {
    background-color: #1ECAF8;
    color: black;
}
.login-form input{
    background-color: #0C2F1F;
    border: 1px solid #37A767;
    color: #37A767;
}
.header-bottom {
    background-image: linear-gradient(#37AD6A 20%,#1F6B34 80%,#1F6B34 100%);
    height: 35px;
    display: flex;
    align-items: center;
    padding: 0 15%;
    font-weight: 500;
}

.header-bottom a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    text-wrap: nowrap;
}

.header-bottom a:hover {
    background-color: #0C2F1F !important;
}

.banner-area {
    z-index: 1;
    position: relative
}

.banner-area .carousel-item,
.banner-area .carousel-inner {
    background-color: #0C2F1F;
}

.banner-area img {
    height: 500px;
    width: 100%;
    object-fit: contain;
}

#banner-slide .carousel-control-next,
#banner-slide .carousel-control-prev {
    width: fit-content;
    padding: 0 70px;
}

#banner-slide .carousel-control-next-icon,
#banner-slide .carousel-control-prev-icon {
    filter: brightness(0) saturate(100%) invert(75%) sepia(37%) saturate(773%) hue-rotate(10deg) brightness(103%) contrast(108%);
    height: 50px;
    width: 50px;
}

.content-area { 
    background-color: #061D14;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: #F3DD29 1px solid;
}

.content-area img {
    padding: 20px;
}

.new-info {
    padding: 6px 17%;
    display: flex;
    text-wrap: nowrap;
    color: #37AD6A;
    background-color: black;
    width: 100%;
    position: relative;
    z-index: 1;
}

.new-info span {
    padding: 0 10px;
    color: #fff;
}


.player-record {
    padding: 20px 15%;
    display: flex;
    justify-content: center;
    gap: 2%;
    background-image:url(../img/bg.png) ;
}

.record-table {
    display: flex;
    flex-direction: column;
    background-color: #141113;
    padding: 5px 20px 15px 20px;
    border: 6px solid #1B1719;
    border-radius: 20px;
    box-shadow: #676767 0 0 1px;
}

.record-table span {
    font-size: 22px;
    font-weight: 500;
    color:#25B25A;
}

.record-table table {
    color: #F3DD29;
    text-align: center;
    margin: 5px 0;
}

.record-table table td,
.record-table table th {
    padding: 6px 40px;
}

.record-table table tr:nth-child(odd) {
    background-color: #191618;
}

.record-table table tr:nth-child(even) {
    background-color: #201D1F;
}

.record-table table tr:nth-child(1) {
    background-color: #0B0809;
    color: white;
}

.record-table table tr td:nth-child(2) {
    color: white;
}
td:empty::after{
    content: "\00a0";
  }

.footer-area {
    background-image:url(../img/bg.png) ;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 500;
}

.floating-sidebar {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.floating-icon {
    background-color: #202020;
    color: #F3DD29;
    width: 55px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    border-radius: 2px;
    cursor: pointer;
}