img {
    align-self: center;
}

.header-area {
    width: 100%;
    height: 130px;
}

.header-top {
    height: 70%;
    margin: 0;
    padding-right:  15%;
    display: flex;
    background-color: #D70008;
    align-items: center;
    justify-content: space-between;
} 

.header-bottom {
    background:#FF0000;
    height: 30%;
    display: flex;
    align-items: center;
    padding: 0 20%;
    padding-top: 2px;
    font-weight: 500;
    margin-bottom:0;
}

.header-logo{
    background-color: #fff;
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.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-yellow {
    background-color: #FFD700;
    color: black;
}

.btn-red {
    background-color: #F90000;
    color: white;
}

.header-bottom a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    text-wrap: nowrap;
}

.header-bottom a:hover {
    background-color: #fff !important;color:#D70008;
}

.banner-area {
    width: 100%;
    height: 420px;
    background-image: linear-gradient(to right, #370707, #770B0D 20%, #770B0D 80%, #370707 100%);
}

.banner-area .slide,
.banner-area .carousel-inner,
.banner-area .carousel-item {
    height: 100%;
}

#banner-slide img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

#banner-slide .carousel-control-next-icon,
#banner-slide .carousel-control-prev-icon {
    filter: brightness(0);
    width: 40px;
    height: 40px;
}

#banner-slide .carousel-control-next,
#banner-slide .carousel-control-prev {
    width: fit-content;
    padding: 70px;
}

.content-area {
    background-color: #F5F9F8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: #E00509;
}

.new-info {
    padding: 3px 17%;
    display: flex;
    text-wrap: nowrap;
    color: white;
    width: 100%;
    background-color: #FF0000;
}

.new-info span {
    padding: 0 10px;
    color: #FFBA00;
    font-weight: bold;
}
 
.player-record {
    padding: 20px 15%;
    background-color: #e7e7e7;
    display: flex;
    justify-content: center;
    gap: 2%;
}

.record-table {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 5px 20px 15px 20px;
    border: 1px solid #fff;
    box-shadow: #333 0 0 4px;
}

.record-table span {
    font-size: 22px;
    font-weight: 500;
    color: #DB0409;
}

.record-table table {
    color: white;
    text-align: center;
    margin: 5px 0;
}

.record-table table td,
.record-table table th {
    padding: 6px 35px;
}

.record-table table tr:nth-child(odd) {
    background-color: #CCCCCC;
}

.record-table table tr:nth-child(even) {
    background-color: #B2B2B2;
}
.record-table table tr th{
    background-color: #DB0409;
}

.footer-area {
    background-color: #D70008;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}
 .bank-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
 }
.bank-offline table {
    color: white;
    text-wrap: nowrap;
}

.bank-offline table tr:nth-child(1)>th:nth-child(1) {
    background-color: #D10C16;
    font-size: 25px;
    text-align: left;
}

.bank-offline table th {
    background-color: #D10C16;
    border-right: 1px solid #026949;
    text-align: center;
}

.bank-offline table td {
    background-color: #B2B2B2;
    border-right: 1px solid #026949;
    font-size: 14px;
}

.bank-offline table th,
.bank-offline table td {
    padding: 5px 15px;
}

.floating-sidebar {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 20%;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.floating-icon {
    background-color: #F61A1F;
    color: white;
    width: 55px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    border-radius: 2px;
    cursor: pointer;
}