html,
body {
    /* background-color: black !important; */
}
li{
    text-align: justify;
}
p{
    text-align: justify;
}
h2{
    font-size: 36px !important;
    text-align: center;
}

p {
    text-align: justify !important;
    font-size: 16px;
}

.fullwrapnewmain {
    /*max-width: unset;*/
    width: 100%;
    min-width: unset;
}

.header h1 {
    margin-top: unset;
}

.header {
    padding-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-newmain {
    width: 100%;
    min-width: unset;
}

.overwrap-newmain {
    overflow: unset;
}

.djs {
    position: relative;
    min-height: 182px;
    margin-bottom: 15px;
    z-index: 1;
}

.djs a img {
    display: block;
    width: 100%;
    height: 100%;
}




.sky-section {
    /*max-width: 1100px;*/
    margin: 20px auto;
    /*padding: 40px;*/
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sky-section h2 {
    font-size: 35px;
    color: black;
    font-weight: bold;
    line-height: 48px;
    margin-bottom: 25px;
    text-align: center;
}

.sky-section p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 10px;
    color: #444;
}

.sky-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.sky-section ul li {
    text-align: justify;
    font-size: 16px;
    padding: 10px 0 10px 30px;
    position: relative;
    color: #333;
    margin-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
    line-height: 1.6;
}

.sky-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC522;
    font-weight: bold;
}

.info-section {
    display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
    margin-top: 30px;
}

.info-text {
    flex: 1;
    padding-right: 30px;
}

.info-text h2 {
    font-size: 35px;
    color: black;
    margin-bottom: 20px;
    line-height: 45px;
}

.info-text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
    color: #444;
}

.info-image {
    flex: 1;
    text-align: center;
}

.info-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 192px;
    margin-bottom: 15px;
}

@media (max-width: 600px) {
    .sky-section {
        /* padding: 20px; */
    }

    .info-section {
        flex-direction: column;
    }

    .info-text {
        padding-right: 0;
    }

    .sky-section h2 {
        font-size: 22px !important;
        line-height: 31px;
        margin-bottom: 10px;
        text-align: center;
    }

    .sky-section p,
    .sky-section ul li {
        font-size: 15px;
    }
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    font-weight: 600;
    font-size: 16px;
    background-color: #FFC522;
    color: #000;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1D1F2C;
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    color: #FFC522;
    background-color: transparent;
    border-color: #FFC522;
    box-shadow: 0 6px 18px rgba(255, 197, 34, 0.4);
    text-decoration: none;
}

.btn-idcommon {
    text-align: center;
}

.content-container {
    max-width: 850px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 30px;
}

.section-title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 20px;
    color: black;
    line-height: 45px;
    text-align: center;
}

.intro-text {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
    text-align: justify;
}

.table-header {
    background-color: #FFC522;
    padding: 18px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #222;
    border-radius: 10px;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #FFC522;
    margin-bottom: 20px;
}

thead {
    display: none;
}

tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 16px 20px;
    transition: background-color 0.3s ease;
}

tr:nth-child(odd) {
    background-color: #fff;
}

tr:nth-child(even) {
    background-color: #fef8e7;
}

tr:hover {
    background-color: #ffefc1;
}

td {
    width: 50%;
    font-size: 16px;
}

td:first-child {
    font-weight: 600;
    color: #555;
}

td:last-child {
    color: #333;
    text-align: right;
}

@media (max-width: 600px) {
    tr {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
    }

    td {
        width: 100%;
        text-align: left;
        padding: 4px 0;
    }

    td:last-child {
        text-align: left;
    }

    .table-header {
        font-size: 20px;
        line-height: 22px;
    }
}

.tablesectionnew {
    margin-top: 10px;
}



/*.signup-title {*/
/*  font-size: 35px;*/
/*  font-weight: bold;*/
/*  color: #FFC522;*/
/*  margin-bottom: 10px;*/
/*  line-height: 45px;*/
/*  text-align: center;*/
/*}*/

/*.signup-list {*/
/*  list-style-type: disc;*/
/*  padding-left: 20px;*/
/*  margin-bottom: 20px;*/
/*}*/

/*.signup-list li {*/
/*  margin-bottom: 16px;*/
/*  font-size: 16px;*/
/*  color: #444;*/
/*}*/

/*.signup-list li::marker {*/
/*  color: #FFC522;*/
/*  font-size: 20px;*/
/*}*/

/*.pro-tip {*/
/*  background-color: #fffbe5;*/
/*  border-left: 5px solid #FFC522;*/
/*  padding: 15px 20px;*/
/*  font-size: 15px;*/
/*  color: #333;*/
/*  border-radius: 6px;*/
/*  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);*/
/*}*/

/*@media (max-width: 600px) {*/
/*  .signup-container {*/
/*    padding: 20px;*/
/*  }*/

/*  .signup-title {*/
/*    font-size: 22px;*/
/*  }*/

/*  .signup-list li {*/
/*    font-size: 15px;*/
/*  }*/
/*}*/

.signup-box {
    /*background-color: #fff;*/
    border-radius: 12px;
    /*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);*/
    /*overflow: hidden;*/
}

.signup-title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 45px;
    color:white;
}

.signup-list li {
    margin-bottom: 16px;
    font-size: 16px;
    color: white;
}

.signup-list li::marker {
    color: #045662;
    font-size: 20px;
}

.pro-tip {
    background-color: #e6f7ff;
    border-left: 5px solid #18b0c8;
    padding: 15px 20px;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.signup-image img {
    width: 100%;
    border-radius: 12px;
}

.signup-image {
    position: sticky;
    top: 194px;
}

@media (max-width: 768px) {
    .signup-image {
        /* min-height: 250px; */
        border-left: none;
        border-top: 1px solid #eee;
    }
    h2{
        font-size: 23px !important;
        line-height: 29px !important;
    }
    h1{
        font-size: 23px !important;
        line-height: 29px !important;
    }

    .sky-section {
        padding-bottom: 144px;
    }
}


.login-box {
    /*background-color: #fff;*/
    border-radius: 12px;
    /*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);*/
    /*overflow: hidden;*/
}

.login-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 0 12px;
}

.login-title {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #222;
}

.login-desc {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.login-list {
    padding-left: 20px;
}

.login-list li {
    margin-bottom: 16px;
    font-size: 16px;
    color: #444;
}

.login-list li::marker {
    color: #FFC522;
    font-size: 20px;
}

@media (max-width: 768px) {
    .login-img {
        border-radius: 12px 12px 0 0;
    }
}

.info-box {
    /*background-color: #fff;*/
    border-radius: 12px;
    padding: 40px 0px;
    /*box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);*/
    /*max-width: 900px;*/
    margin: auto;
}

.info-title {
    font-size: 35px;
    font-weight: 600;
    color: black;
    text-align: center;
    margin-bottom: 15px;
}

.info-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.highlight {
    color: white;
    font-weight: 600;
}



.feature-box {
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.feature-img {
    width: 80px;
    height: 80px;
    background: black;
    border: 1px solid #FFC522;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    line-height: 45px;
}

.feature-desc {
    font-size: 16px;
    color: #555;
    /*margin-top: 10px;*/
    text-align: justify;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-img {
        margin-bottom: 15px;
    }
}

.first-section {
    background: linear-gradient(to left, #022c43, #18b0c8);
    padding: 40px;
}

.first-section h2 {
    color: white;
}

.first-section p {
    color: white;
}

.second-section {
    padding: 40px;
}

.third-section {
    background: linear-gradient(to left, #03415b, #1cc5d3);
    padding: 40px;
}

.third-section h2 {
    color: white;
}

.third-section p {
    color: white;
}

.four-section {
    padding: 40px;
}

.five-section {
    background: linear-gradient(180deg, #1D1F2C 0%, #07080D 100%);
    padding: 40px;
}

.five-section h2 {
    font-size: 35px;
    color: white;
}

.five-section ul li {
    color: white;
}

.six-section {
    padding: 40px;
}

.seven-section {
    background: linear-gradient(180deg, #1D1F2C 0%, #07080D 100%);
    padding: 40px;
}

.seven-section h2 {
    color: white;
}

.seven-section p {
    color: white;
}

.eight-section {
    padding: 40px;
}

.nine-section {
    background: linear-gradient(180deg, #1D1F2C 0%, #07080D 100%);
    padding: 40px;
}

.nine-section h2 {
    color: white;
}

.nine-section p {
    color: white;
}

.tenth-section {
    padding: 40px;
}

.eleven-section {
    background: linear-gradient(180deg, #1D1F2C 0%, #07080D 100%);
    padding: 40px;
}

.eleven-section h2 {
    color: white;
}

.twelve-section {
    padding: 40px;
}

.twelve-section h2 {
    color: black;
}

.twelve-section p {
    color: black;
}

.bonus-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 30px 20px 20px;
    margin-top: 50px;
    position: relative;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #045662;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;

}

.bonus-icon img {
    width: 40px;
    height: 40px;
}

.bonus-title {
    font-size: 20px;
    line-height: 30px;
    color: black;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
}

.bonus-desc {
    font-size: 16px;
    line-height: 1.6;
    color: black !important;
    margin-top: 10px;
    text-align: center;
}



#centerColumn {
    margin-left: 260px;
    padding: 40px;
}

@media (max-width: 768px) {
   

    #centerColumn {
        margin-left: 0;
        padding: 0;
    }

    .gamehall-wrap-simple {
        grid-template-columns: unset;
    }

    .first-section {
        padding: 10px;
    }

    .second-section {
        padding: 10px;
    }

    .third-section {
        padding: 10px;
    }

    .four-section {
        padding: 10px;
    }

    .five-section {
        padding: 10px;
    }

    .six-section {
        padding: 10px;
    }

    .seven-section {
        padding: 10px;
    }

    .eight-section {
        padding: 10px;
    }

    .nine-section {
        padding: 10px;
    }

    .feature-title {
        line-height: 31px;
    }

    .tenth-section {
        padding: 10px;
    }

    .eleven-section {
        padding: 10px;
    }

    .twelve-section {
        padding: 10px;
    }

    .thirteen-section {
        padding: 10px !important;
    }

    .fourteen-section {
        padding: 10px !important;
    }

    .fifteen-section {
        padding: 10px !important;
    }

    .sixteen-section {
        padding: 10px !important;
    }

    .seventeen-section {
        padding: 10px !important;
    }
}


.sdjkfl {
    width: 100%;
    background-color: #000;
    /* padding: 10px 20px; */
    position: relative;
    z-index: 1050;
    transition: all 0.3s ease;
}

.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.headersuper {
    background-color: #ffcc00;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headersuper span {
    font-size: 16px;
}

.sectionsuper {
    border-top: 2px solid #000;
}

.section-headersuper {
    background-color: #ffd700;
    padding: 10px;
    font-size: 20px;
    font-weight: 500;
}

.matchsuper {
    border-bottom: 1px solid #ccc;
    display: grid;
    grid-template-columns: 1fr 50px 50px 50px 50px;
    background: white;
    align-items: center;
}

.matchsuper div:first-child {
    text-align: left;
    line-height: 1.6;
    font-size: 16px;
    padding-left: 20px;
}

.highlightsuper {
    font-size: 13px;
    color: #000;
}

.matchsuper div {
    padding: 10px;
    text-align: center;
    font-size: 16px;
}

.oddsuper {
    background-color: #e0f0ff;
    color: #000;
}

.evensuper {
    background-color: #ffe6e6;
    color: #000;
}

.logoskysuper img {
    width: 100%;
    max-width: 67px;
}

.image-row img {
    width: 100%;
    height: auto;
}

.tabsupermenu {
    max-height: 30px;
    min-height: 30px;
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.colored-img {
    filter: brightness(0) saturate(100%) invert(74%) sepia(18%) saturate(563%) hue-rotate(166deg) brightness(96%) contrast(86%);
}

.new-bg-black {
    position: unset;
}




.thirteen-section {
    padding: 40px;
}

.fourteen-section {
    padding: 40px;
}

.fifteen-section {
    background: linear-gradient(180deg, #1D1F2C 0%, #07080D 100%);
    padding: 40px;
}

.fifteen-section h2 {
    color: white;
}

.fifteen-section ul li {
    color: white;
}

.sixteen-section {
    padding: 40px;
}

.seventeen-section {
    background: linear-gradient(180deg, #1D1F2C 0%, #07080D 100%);
    padding: 40px;
}

.seventeen-section h2 {
    color: white;
}

.seventeen-section p {
    color: white;
}


.navbar-top {
    background-image: linear-gradient(#022c43, #18b0c8);
    padding: 10px 0;
    background-color: #18b0c8;
}

.navbar-top img {
    height: 63px;
}

.form-control {
    max-width: 180px;
}

.nav-yellow {
    border-bottom: 1px solid white;
    background-color: #045662;
    font-weight: 500;
}

.nav-yellow a {
    color: white;
    text-decoration: none;
    padding: 6px 8px;
    display: inline-block;
    font-size: 13px;
    /* border-right: 2px solid white; */
    white-space: nowrap;
}

.nav-yellow a:last-child {
    border-right: none;
}

/* Mobile view */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    .carousel-item img {
        height: 100%;
    }

    .nav-yellow {
        /* display: none; */
        overflow: auto;
    }
    .mob-list-new{
        display: unset !important;
        white-space: nowrap;
    }

    .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .mobile-header h4 {
        font-size: 18px;
        margin-left: 10px;
    }

    .mobile-buttons a {
        margin-left: 5px;
        margin-bottom: 0;
        font-size: 14px;
        padding: 5px 10px;
    }
}

@media (min-width: 769px) {
    .mobile-header {
        display: none;
    }
}

.btn {
    background-image: unset;
    box-shadow: unset;
    border: none;
}

.btn:hover {
    background-image: unset;
    box-shadow: unset;
    border: none;
    background-color: #D72011;
    color: black;
}

.whatsapp-button {
    position: fixed;
    bottom: 105px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;

    transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
    background-color: #1ebe5b;
    color: white;
}

.whatsapp-button i {
    margin-right: 10px;
}

.gamehall-wrap-simple img {
    transition: transform 0.4s ease;
    /* Smooth zoom */
    overflow: hidden;
}

.gamehall-wrap-simple a:hover img {
    transform: scale(1.05);
    /* Zoom effect */

}

.img-wrapnew {
    overflow: hidden;
}


.bonus-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #FFC522;
    /* Indigo */
    color: black;
    padding: 10px 15px;
    z-index: 1000;
}

.bonus-banner .banner-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-weight: 800;
    flex-wrap: wrap;
}

.bonus-banner .text {
    font-size: 16px;
    margin-bottom: 10px;
}

.bonus-banner .btn-signup {
    background-color: #D72011;
    /* Yellow */
    color: #000;
    font-weight: bold;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.bonus-banner .btn-signup:hover {
    background-color: #D72011;
    color: #000;
}

@media (min-width: 576px) {
    .bonus-banner .text {
        margin-bottom: 0;
    }
}





.sidebar {
      width: 250px;
      background-color: #045662;
      padding: 20px 20px 190px;
      height: 100vh;
      position: fixed;
      top: 180px;
      left: 0;
      overflow-y: auto;
      transition: transform 0.3s ease;
    }

    .sidebar h4 {
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: #fff;
    }

    .sidebar a {
      display: block;
      color: #fff;
      text-decoration: none;
      margin: 10px 0;
    }

    .sidebar a:hover {
      text-decoration: none;
    }

    .main-content {
      margin-left: 250px;
      padding: 0 10px 10px;
    }

    .game-card {
      background-color: #022c43;
      border: 2px solid #045662;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .game-card:hover {
      transform: translateY(-5px) !important;
      box-shadow: 0 0 15px rgba(24, 176, 200, 0.6);
    }

    .game-card img {
      width: 100%;
      /* height: 150px; */
      object-fit: cover;
    }

    .game-title {
      padding: 10px;
      font-size: 1rem;
      background-color: #045662;
      text-align: center;
    }

    .hamburger {
      font-size: 26px;
    background: none;
    border: none;
    }

    @media (max-width: 991px) {
      .sidebar {
        transform: translateX(-100%);
      }

      .sidebar.active {
        transform: translateX(0);
        z-index: 999;
         top: 180px; 
        width: 100%;
      }

      .main-content {
        margin-left: 0;
        padding: 0 10px 10px;
      }

      .hamburger {
        display: block;
      }
    }


    .fixed-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: linear-gradient(#022c43, #18b0c8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.header-spacer {
  height: 120px; /* Adjust to your header height */
}
a{
    text-decoration: none;
}


.side-list-img a{
    display: flex;
    gap: 10px;
}
.main-section-radhe{
    border-radius: 15px;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  backdrop-filter: blur(6px);
}

.step-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.step-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: white;
  font-weight: 800;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: white;
}

.faq-accordion .accordion-item {
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      margin-bottom: 15px;
      border-radius: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-accordion .accordion-button {
      background-color: transparent;
      color: white;
      font-weight: 600;
      padding: 1rem 1.25rem;
      font-size: 1rem;
      transition: background-color 0.3s ease, color 0.3s ease;
      box-shadow: none;
    }

    .faq-accordion .accordion-button::after {
      filter: brightness(0) invert(1); /* white arrow */
    }

    .faq-accordion .accordion-button:not(.collapsed) {
      background-color: #18b0c8;
      color: #fff;
    }

    .faq-accordion .accordion-body {
      background-color: rgba(255, 255, 255, 0.03);
      color: white;
      padding: 1rem 1.25rem;
      font-size: 0.95rem;
      line-height: 1.6;
    }
    .side-list-img a:hover {
    text-decoration: none;
}

.new-casinomain p{
    font-size: 14px;
    font-weight: 700;
    height: 28px;
    line-height: 19px;
    margin: 0;
    padding: 6px 10px 6px 7px;
    text-transform: capitalize;
    background-color: #18adc5;
    color: #fff;
}

.whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 1050;
      background-color: #25D366;
      color: white;
      border-radius: 50%;
      text-decoration: none;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      animation: bounce 2s infinite;
      transition: transform 0.3s ease-in-out;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      text-decoration: none;
      color: white;
    }

    .whatsapp-btn i {
      font-size: 28px;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }
    
    
    /* Custom Scrollbar for WebKit (Chrome, Edge, Safari) */
    .sidebar::-webkit-scrollbar {
      width: 8px;
    }

    .sidebar::-webkit-scrollbar-track {
      background: rgba(255, 255, 255, 0.1); /* light transparent */
    }

    .sidebar::-webkit-scrollbar-thumb {
      background-color: #18b0c8; /* bright thumb for contrast */
      border-radius: 10px;
    }

    .sidebar::-webkit-scrollbar-thumb:hover {
      background-color: #e6b800;
    }
    
    .top-marquee {
      background: linear-gradient(to right, #022c43, #18b0c8);
      color: white;
      padding: 6px 15px;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

.marquee-container {
      flex: 1;
      overflow: hidden;
      position: relative;
      height: 20px; /* fixes overlap height */
    }
    .marquee-text {
      white-space: nowrap;
      display: inline-block;
      position: absolute;
      animation: marquee 15s linear infinite;
    }

    @keyframes marquee {
      0% {
        transform: translateX(100%);
      }
      100% {
        transform: translateX(-100%);
      }
    }

    .time-date {
      white-space: nowrap;
      padding-left: 10px;
      flex-shrink: 0;
    }
    
    .radhe-newtable {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

/* Header */
.radhe-newtable thead th {
  background: white;
  color: black;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
  font-size: 16px;
}
.radhe-newtable thead tr{
    padding: 0; 
}

/* Cells */
.radhe-newtable td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #333;
  vertical-align: top;
  text-align: start;
}
.radhe-newtable tbody tr {
  padding: 0;
}
.radhe-newtable tbody tr:nth-child(even) {
  background: #18b0c833; /* light teal with transparency */
}


.radhe-blockhead{
    display: block;
}

/* Icons */
.radhe-newtable .good {
  color: #0ec27a;
  font-weight: bold;
  margin-right: 6px;
}
.radhe-newtable .bad {
  color: #ff4d4f;
  font-weight: bold;
  margin-right: 6px;
}

/* Row hover effect */
.radhe-newtable tbody tr:hover {
  background: #1cc5d363;
}

/* Remove last row border */
.radhe-newtable tbody tr:last-child td {
  border-bottom: none;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .radhe-newtable,
  .radhe-newtable thead,
  .radhe-newtable tbody,
  .radhe-newtable th,
  .radhe-newtable td,
  .radhe-newtable tr {
    display: block;
    width: 100%;
  }
  .radhe-newtable thead {
    display: none;
  }
  .radhe-newtable tr {
    /* margin-bottom: 10px; */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    padding: 8px 12px;
  }
  .radhe-newtable td {
    border: none;
    padding: 8px 8px;
  }
}