:root {
  /* Sidebar and Secondary Colors */
  --bg-secondary: #2C3E50;
  --bg-secondary70: #2C3E50B3;
  --bg-secondary85: #2C3E50D9;
  --text-secondary: #FFFFFF;

  /* Body Colors */
  --bg-body: #ffffff;
  --text-body: #000000;
  --bg-back: #72bbef;
  --bg-lay: #faa9ba;
  --table-border: #c7c8ca;

  /* Table Colors */
  --bg-table: #f7f7f7;
  --bg-table-row: #f2f2f2;
  --text-table: #333;
  --table-border: #c7c8ca;

  /* Primary Colors */
  --bg-primary: #0088CC;
  --bg-primary90: #0088CCE6;
  --text-primary: #FFFFFF;

  /* Input Colors */
  --input-border: #dbdbdb;
  --input-border-hover: #b5b5b5;

  /* Sidebar Menu Colors */
  --bg-sidebar: #cccccc;
  --text-sidebar: #000000;
  --sidebar-menu-link-bg: #bbbbbb;
  --sidebar-menu-link-color: #000000;
  --sidebar-menu-link-border: #9e9e9e;

  /* Status Colors */
  --text-info: #097c93;
  --bg-info: #097c93;
  --text-danger: #bd1828;
  --bg-danger: #bd1828;
  --text-success: #086f3f;
  --bg-success: #086f3f;
}

body {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
}




/* Custom Toast Styles */
.custom-toast {
  border-radius: 50px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  padding: 8px 16px !important;
  min-height: 48px !important;
  font-family: 'Roboto Condensed', sans-serif !important;
  align-items: center !important;
}

.custom-toast-body {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 16px !important;
  color: #333 !important;
  display: flex !important;
  align-items: center !important;
}

/* Customize the default error icon color if needed, or we can replace it */
.Toastify__toast-icon.Toastify--animate-icon.Toastify__zoom-enter {
  width: 24px;
  height: 24px;
}

/* Modal Backdrop Styling */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-content {
  background-color: var(--bg-body);
  color: var(--text-body);
  border: 0;
  border-radius: 0;
}

@media only screen and (max-width: 767px) {
  .modal-dialog {
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    /* height: 50vh !important;
    max-height: 50vh !important; */
  }
  
  .modal-content {
    border-radius: 0 !important;
    /* height: 50vh !important;
    max-height: 50vh !important; */
  }
}

/* Casino Result Modal Styles */
.casino-result-modal {
  width: 100%;
}

.casino-result-round-id {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 14px;
}

.casino-result-round-id span {
  display: inline-block;
}

.result-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

.casino-result-cards {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.casino-result-cards img {
  width: auto;
  height: 50px;
  object-fit: contain;
  border-radius: 4px;
}

@media only screen and (max-width: 767px) {
  .casino-result-cards img {
    height: 35px;
  }
}

@keyframes winnerbox {
  0%, 100% {
    box-shadow: rgba(29, 127, 30, 0.1) 0px 0px 0px 0px;
  }
  50% {
    box-shadow: rgba(29, 127, 30, 0.1) 0px 0px 0px 8.27153px;
  }
}

.casino-winner-icon {
  z-index: 10;
  color: #4caf50;
  font-size: 2rem;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 32px;
  min-height: 32px;
  width: 32px;
  height: 32px;
  animation: winnerbox 1.5s ease-in-out infinite;
  border-radius: 50%;
}

.casino-winner-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.casino-winner-icon-left {
  margin-right: 0.5rem;
  order: -1;
}

.casino-winner-icon-right {
  margin-left: 0.5rem;
  order: 999;
}

.casino-result-desc {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  padding: 6px;
  box-shadow: 0 0 4px -1px;
  margin-top: 10px;
}

.casino-result-desc-item {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.casino-result-desc-item > div:first-child {
  margin-right: 2%;
  opacity: 0.6;
  width: 30%;
  text-align: right;
}

.casino-result-desc-item > div:last-child {
  word-break: break-all;
  width: 60%;
}