:root {
  --primary-color: #052a51;
  --secondary-color: #2ecc71;
  --font-size-base: 16px;
  --model-header:#212c36;
}

body{
	height: 100vh;
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}
.displayflex-justi{
    display: flex;
    justify-content: space-between;
}

.rules-page {
  font-family: 'Roboto', sans-serif;
}
.rules-page table td{
  border: none !important;
    background: #eeeeee !important;
}

.header {
  align-items: center;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 0px;
    position: fixed;
    width: 100%;
    height: 60px;
    z-index: 9999;

}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo img {
      height: 40px;
}

.user-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
    text-decoration: none  !important;

}

.nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}


 
.main-menu-btn {
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #3b4b5b;
  color: white;
  border: none;
  cursor: pointer;
}

.language-toggle button {
  margin: 0 5px;
  padding: 5px 10px;
  cursor: pointer;
}
 

.rules h2 {
  font-size: 1.2rem;
}

.rules p {
  font-weight: bold;
}

.rules ul {
	list-style-type: none;
	padding: 0;
	margin: 0px;
	text-align: left;
}

.rules li {
  margin: 0px 0;
}

.dash-notification{
    background: #fff;
    position: fixed;
    top: 60px;
    width: 100%;
    padding: 5px;
    z-index:-1111;

}
 
.main-content{
   /* padding-top:100px; */
}

.menu-container {
    grid-gap: 0px;
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(2, 1fr);
    /*background: #fff;*/
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*background-color: white;*/
  padding: 5px;
  border-radius: 8px;
  /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  /* background: var(--primary-color); */
  /* margin: 15px;    */
 }

.menu-item img {
    height: 120px;
    width: 120px;
}

.menu-item p {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

.sidebar-icon{
	display:none;
}

/*my style*/
.back-header{
	background: #ff7e03;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 10px;
    font-weight: 700;
}

.title-header{
	background: var(--primary-color);
    /* width: 100%; */
    text-align: center;
    color: #fff;
    padding: 10px;
    font-weight: 700;
}



.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #f2f2f2;
}

th, td {
    padding: 5px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: var(--primary-color);
    color:#fff;
}

tr{
	background:#fff;
}


.form-group {
  margin-bottom: 15px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 95% !important;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
	background-color: var(--primary-color);;
	border: none;
	border-radius: 4px;
	color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	padding: 10px;
	width: 100%;
	font-weight: 700;
}

button:hover {
  background-color: #21a1f1;
}


.password-box{
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    padding: 30px;
    margin: 15px;
    border-radius: 10px;

}
/* responsive */


@media (max-width: 600px) {
    th, td {
        padding: 8px;
    }
}

  @media (max-width: 768px) {
    .nav {
      display: none;
    }
    .sidebar-icon{
		display:block;
        padding-right: 15px;
	}
	
	.menu-container {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 0px;
	}
  }
  
  

/*side bar*/
 /* Overlay */
.overlay-pop {
  position: fixed;              /* FIX */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9998;                /* LOWER than sidebar */
}

/* Sidebar */
aside {
  position: fixed;              /* SINGLE position */
  top: 0;
  left: -300px;                 /* MATCH sidebar width */
  width: 300px;
  height: 100%;
  background: var(--primary-color);
  box-sizing: border-box;
  transition: left 0.4s ease;
  z-index: 9999;  
  height: 100%;              /* ABOVE overlay */
}

aside.active {
  left: 0;
}

/* Sidebar links */
aside a {
  color: #fff;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  text-decoration: none;
}


.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;
  float: left;

  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.toggle-bar {
  width: 38px;
  margin: 10px 0;
  position: relative;
  border-top: 6px solid #303030;
  display: block;
}
.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: #303030;
  height: 6px;
  width: 38px;
  position: absolute;
  top: -16px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}
.toggle-bar::after {
  top: 4px;
}
.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}
.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.sidebar-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 15px;
}
.sidebar-list{
    list-style-type: none;
    padding: 0;
}

/*inplay*/

.games-tab-container{
	display: flex;
    justify-content: space-around;
    background: #3b4b5b;
    /*padding: 5px;*/
    /*margin-bottom: 20px;*/
}
.games-tab-item{
	align-items: center;
    background: var(--primary-color);
    color: #fff;
    display: inline-grid;
    font-weight: 700;
    justify-content: center;
    padding: 10px;
    width:100%;
}

.games-tab-item.active{
	align-items: center;
    background: #12b981;
    color: #fff;
    display: inline-grid;
    font-weight: 700;
    justify-content: center;
    padding: 10px;
	width:100%;
}
.games-tab-item-image{
    height: 20px;
    margin: auto;
}
.inplay-box{
    background: var(--primary-color);
    color: #fff;
    padding: 5p;
    padding: 5px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inplay-box-item{
    color: black;
    font-size: 16px;
    font-weight: 700;
}
.blink-green {
    background: #12b83a;
    width: 15px;
    height: 15px;
    border-radius: 20px;
    margin-right: 10px;
}

/*baet*/
.game-heading-box{
    padding: 5px;
    background: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.full-score-btn{
    background: #f7d4a8;
    padding: 3px 5px;
    border-radius: 5px;
    color: var(--primary-color);
}

.game-heading{
    color: #fff;
    font-weight: 700;
}

.betting-table {
}

.match-info {
  text-align: center;
  margin-bottom: 20px;
}

.betting-table  table {
  width: 100%;
  border-collapse: collapse;
}

.betting-table   table, th, td {
  border: 3px solid #e2e2e2;
}

.betting-table   th, td {
  /*padding: 10px;*/
  text-align: center;
}

.session-info {
  margin: 20px 0;
}

.fancy-bets {
  margin: 20px 0;
}


.bet {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}

.bhav-lay{
	background:#ff7390ab;
	color:#000000;
  font-weight: 600;
	width:20%;
}

.bhav-back{
	background:#72bbef;
	color:#000000;
  font-weight: 600;
	width:20%;
}

.bet-won{
	background:#58bc4b;
	color:#fff;
}

.bet-loss{
	background:#ce5752;
	color:#fff;
}


.bet-box-pop{
    position: fixed;
    background: var(--primary-color);
    bottom: 30px;
    height: 240px;
    width: 100%;
    display: grid;
}

.bet-box-btn{
	display: grid;
    gap: 5px;
    grid-template-columns: repeat(4, 1fr);
    padding: 5px;
}

.btn-primary{
    background-color: var(--primary-color) !important;
}

.runner-name-input{
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    font-size: 18px;
    border:none !important;
}
.runner-name-input{
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    font-size: 18px;
}
.price-size-input{
    background: #fff;
    text-align: center;
    font-weight: 700;
}

.back-bg{
	background:#72bbef !important;
}
.lay-bg{
	background:#ff7290 !important;
}

.session-message {
	padding: 2px;
    text-align: right;
    padding-right: 10px;
    color: #b40202;
    font-weight: 600;
}

.text-center {
	text-align:center;
}

.text-success-cr{
    color: #00a715;
    font-weight: 700;
}
.text-danger-dr{
	color: #a70000;
    font-weight: 700;
}

.session-limit-or-leddar {
	display: flex;
    justify-content: space-between;
    font-size:16px;
}
.runner-limit-or-leddar {
	display: flex;
    justify-content: space-between;
    font-weight: 700;
    padding: 10px 0;
}
.srunner-limit-or-leddar {
    font-weight: 700;
    font-size: 16px;
}
 

/*modal*/

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: 1
}

.close:focus,.close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5
}

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.modal-open {
    overflow: hidden !important;
    display:block  !important;
    overflow-y:auto  !important;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0,-25%);
    -ms-transform: translate(0,-25%);
    -o-transform: translate(0,-25%);
    transform: translate(0,-25%);
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out,-o-transform .3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #000
    
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857143
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin-left: 5px
}

.modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width:600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
        box-shadow: 0 5px 15px rgba(0,0,0,.5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width:900px
    }
}

@media (max-width: 768px) {
    .banner-styte {
        max-width: 100%;
    	height: 120px;
    }
}
@media (max-width: 992px) {
    .banner-styte {
        max-width: 100%;
    	height: 120px;
    }
}


/* Casino Block */

/* Container for the button and odds */
.betting-container {
    text-align: center;
    margin: 20px;
}

/* Styling for the odds text */
.odds {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Styling for the bet button */
.bet-button {
    background-color: var(--primary-color); /* Red background color */
    border-radius: 10px; /* Rounded corners */
    padding: 15px 30px; /* Padding inside the button */
    color: white; /* White text color */
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Styling for the lock/unlock icon */
.lock-icon {
    font-size: 24px;
    color: white;
    margin-right: 10px;
}

/* Hover effect for the bet button */
.bet-button:hover {
    background-color: #b23535; /* Darker red when hovered */
}

/* Suspended state */
.betting-container.suspended .lock-icon {
    content: "\1F512"; /* Lock Icon (🔒) */
}

/* Active state */
.betting-container.active .lock-icon {
    content: "\1F513"; /* Unlock Icon (🔓) */
}

.casino-btn-div {
    width: 100%;
    margin: 5px;
} 
.casino-btn {
    margin: 5px;
    background:var(--primary-color);
}
.casino-btn-back  {
    background:var(--primary-color);;
     border-radius:0;
}

.casino-btn-lay  {
    background:#ecba7b;
    border-radius:0;
}





.suspended-box {
    position: relative;
    pointer-events: none;
    cursor: none;
}

.suspended-box::before {
    background-image: url("../images/lock.svg");
    background-size: 17px 17px;
    filter: invert(1);
    -webkit-filter: invert(1);
    background-repeat: no-repeat;
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    pointer-events: none;
}

.suspended-box::after {
    content: "";
    background-color: #373636d6;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.video-box {
	position: relative;
    background-color: #000;
    color: #fff;
}

.counter-div{
    position: absolute;
    color: #fff;
    right: 12px;
    bottom: 0;
    font-size: 24px;
    font-weight: 700;
} 

.counter-2-card-div{ 
      align-items: center;
    display: flex;
    left: 0;
    position: absolute;
    top: 10px;
    background: #2c1010ab;
    padding: 5px;
}

.casino-card{
	height:40px;
	margin:auto;
}

.last-winner-list{
	display: flex;
    justify-content: flex-end;
    padding: 5px;
    align-items: center;
    background: white;
}

.winner-ball{
    border-radius: 30px;
    color: #fff;
    height: 30px;
    wimargin: initial;
    width: 30px;
    background: #3b4b5b;
    margin-right: 5px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 700;

}
.winner-ball-1{
    border-radius: 30px;
    color: #fff;
    height: 30px;
    margin: initial;
    width: 30px;
    background: #8c8414;
    margin-right: 5px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 700;

}
.winner-ball-2{
    border-radius: 30px;
    color: #fff;
    height: 30px;
    margin: initial;
    width: 30px;
    background: #9b7747;
    margin-right: 5px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    font-weight: 700;

}


.screen-loader {
    height: 25px !important;
    width: 25px !important;;
    display: flex !important;;
    margin: auto !important;;
}

.menu-container-casino {
    grid-gap: 0px;
    display: grid;
    gap: 0px;
    grid-template-columns: repeat(6, 1fr);
    /*background: #fff;*/
}

@media (max-width: 768px) {
  
	.menu-container-casino {
	  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	  gap: 0px;
	}

}


.menu-item-casino{
    background: var(--primary-color);
    color: #fff;
    padding: 0px;
    margin: 11px;
    border-radius: 8px;
    flex-direction: column;
    font-weight: 700;
    justify-content: center;
   
    text-align: center;
    text-decoration: none;
}

.menu-item-casino img {
    width: 100%;
	border-radius: 8px;
}

.menu-item-casino p {
   color: #fff;
    font-size: 20px;
    margin: 8px;
    font-weight: 600;
}


.ab2-image-container {
  display: flex;           /* Align images horizontally */
  overflow-x: auto;        /* Enable horizontal scrolling */
  white-space: nowrap;     /* Prevent line breaks between images */
  width: 200px;             /* Set the width of the container */
}

 
 
 
 
.otherEvent{
    padding: 10px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.blinklable {
    text-align: center;
    color: #fff;
    width: 200px;
    text-decoration: none;
}

.blinktext{
    /*font-size: 25px;*/
    /*font-family: cursive;*/
    color: white;
    animation: blinklable 1s linear infinite; /* Corrected the animation name */
}

@keyframes blinklable {
	   0% { opacity: 0; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}



/*MAtka*/

@media (max-width: 768px) {
  
	.menu-container-matka-btn {
	    grid-gap: 10px !important;
	    display: grid;
	    gap: 11;
	    grid-template-columns: repeat(4, 1fr) !important;
	    margin: 10px;
	}

}

.menu-container-matka-btn {
    grid-gap: 10px;
    display: grid;
    gap: 11;
    grid-template-columns: repeat(8, 1fr);
    margin: 10px;
}







/* new style */

    .bet-container {
      background: #1e293b;
      border-radius: 16px;
      padding: 20px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      border: 2px solid #334155;
      margin-bottom: 20px;
      position: fixed;
      bottom: 0;
      z-index: 99999;
    }

    .bet-back {
      border-left: 6px solid #10b981;
    }

    .bet-lay {
      border-left: 6px solid #ef4444;
    }

    /* Header Styles */
    .bet-header {
      margin-bottom: 24px;
    }

    .bet-runner-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .runner-name-container {
      flex: 1;
      min-width: 0;
    }

    .runner-label {
      display: block;
      color: #94a3b8;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }

    .runner-name-display {
      width: 95%;
      background: #0f172a;
      border: 2px solid #334155;
      border-radius: 10px;
      padding: 12px 16px;
      color: #ffffff;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      cursor: not-allowed;
      outline: none;
    }

    .runner-name-display:disabled {
      opacity: 0.9;
    }

    .bet-type-indicator {
      margin-left: 16px;
    }

    .bet-type-badge {
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      white-space: nowrap;
    }

    .bet-type-badge.back {
      background: rgba(16, 185, 129, 0.2);
      color: #10b981;
      border: 1px solid rgba(16, 185, 129, 0.3);
    }

    .bet-type-badge.lay {
      background: rgba(239, 68, 68, 0.2);
      color: #ef4444;
      border: 1px solid rgba(239, 68, 68, 0.3);
    }

    /* Controls Grid */
    .bet-controls-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 16px;
      margin-bottom: 24px;
    }

    @media (max-width: 768px) {
      .bet-controls-grid {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    @media (max-width: 480px) {
      .bet-controls-grid {
        grid-template-columns: repeat(4, 1fr)
      }
    }

    .control-group {
      display: flex;
      flex-direction: column;
    }

    .control-label {
      color: #000000;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      text-align: center;
    }

    .input-with-icon {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-with-icon i {
      position: absolute;
      left: 12px;
      color: #64748b;
      font-size: 14px;
      z-index: 1;
    }

    .control-input {
      width: 100%;
      background: #0f172a;
      border: 2px solid #334155;
      border-radius: 10px;
      padding: 12px 12px 12px 12px;
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      text-align: center;
      outline: none;
      transition: all 0.3s ease;
    }

    .control-input:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .control-input:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    .stake-input:not(:disabled) {
      border-color: #f59e0b;
    }

    .stake-clear-btn {
      position: absolute;
      right: 12px;
      background: transparent;
      border: none;
      color: #94a3b8;
      cursor: pointer;
      padding: 4px;
      font-size: 14px;
      transition: color 0.3s ease;
    }

    .stake-clear-btn:hover {
      color: #ef4444;
    }

    .timer-group {
      align-items: center;
    }

    .timer-display {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #0f172a;
      border: 2px solid #334155;
      border-radius: 10px;
      padding: 12px;
      gap: 8px;
      color: #f59e0b;
      font-size: 16px;
      font-weight: 700;
    }

    .timer-display i {
      color: #f59e0b;
    }

    /* Action Buttons */
    .action-buttons {
      grid-column: 1 / -1;
      display: flex;
      justify-content: center;
    }

    .place-bet-btn {
      width: 100%;
      max-width: 300px;
      background: linear-gradient(90deg, #10b981, #059669);
      border: none;
      border-radius: 12px;
      padding: 16px 24px;
      color: white;
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }

    .place-bet-btn:hover:not(:disabled) {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    }

    .place-bet-btn:active:not(:disabled) {
      transform: translateY(0);
    }

    .place-bet-btn:disabled {
      opacity: 0.7;
      cursor: not-allowed;
    }

    .place-bet-btn.lay {
      background: linear-gradient(90deg, #ef4444, #dc2626);
      box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    }

    .place-bet-btn.lay:hover:not(:disabled) {
      box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    }

    .btn-loading {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .spinner-small {
      width: 20px;
      height: 20px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-top-color: white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    
    

    .quick-stake-header {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #f59e0b;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }

    .quick-stake-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 10px;
      margin-bottom: 16px;
    }

    @media (max-width: 768px) {
      .quick-stake-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 480px) {
      .quick-stake-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .quick-stake-btn {
      background: #1e293b;
      border: 2px solid #334155;
      border-radius: 8px;
      padding: 12px 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .quick-stake-btn:hover {
      background: #2d3748;
      border-color: #3b82f6;
      transform: translateY(-2px);
    }

    .quick-stake-btn:active {
      transform: translateY(0);
    }

    .quick-stake-btn .amount {
      color: #ffffff;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .quick-stake-btn .currency {
      color: #94a3b8;
      font-size: 11px;
      text-transform: uppercase;
    }

    .custom-stake-container {
      display: flex;
      justify-content: center;
    }

    .custom-stake-btn {
      background: transparent;
      border: 2px dashed #64748b;
      border-radius: 10px;
      padding: 12px 24px;
      color: #cbd5e1;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .custom-stake-btn:hover {
      border-color: #3b82f6;
      color: #3b82f6;
    }

    /* Bet Summary */
    .bet-summary {
      display: flex;
      justify-content: space-around;
      background: #0f172a;
      border-radius: 12px;
      padding: 16px;
      margin-top: 20px;
      border: 1px solid #334155;
    }

    .summary-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .summary-label {
      color: #94a3b8;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    .summary-value {
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
    }

    /* Animations */
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Responsive adjustments */
    @media (max-width: 640px) {
      .bet-container {
        padding: 16px;
      }
      
      .runner-name-display {
        font-size: 16px;
        padding: 10px 12px;
      }
      
      .place-bet-btn {
        padding: 14px 20px;
        font-size: 15px;
      }
      
      .summary-value {
        font-size: 16px;
      }
    }

    /* Touch feedback for mobile */
    @media (max-width: 768px) {
      .quick-stake-btn:active {
        transform: scale(0.98);
      }
      
      .place-bet-btn:active:not(:disabled) {
        transform: scale(0.98);
      }
    }



 .new-all-event{
    display: flex;
    overflow: scroll;
    background: var(--primary-color);
 }   

.new-all-event-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 8px;
  background-color: #ff7c0e;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  margin: 5px;
}

.new-all-event-block:hover {
  background-color: #ff7c0e;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.new-all-event-block div:first-child {
  font-weight: 600;
  color: #000000;
}

.new-all-event-block div:last-child {
  font-size: 12px;
  color: #000000;
  white-space: nowrap;
}

.new-event-name{
    width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.casino-box table tr td {
    /* background: linear-gradient(90deg, rgb(220 36 26) 0%, rgb(2 25 51) 50%, rgb(1 162 227) 100%); */
     border:2px dashed #999797;
}


.casino-box .bet-container {
    background: #def5f5fa !important;
}
