/* Bootstrap-like container */
.container-fluid {
    width: 100%;
    /* padding-right: 15px; */
    /* padding-left: 15px; */
    margin-right: auto;
    margin-left: auto;
  }
  
  /* Lucky seven content box */
  .lucky-seven-content-map {
    background-color: #fff;
    padding: 15px;
  }
  
  /* Button styling */
  .lowHighBtn {
    color: #fff;
    background-image: linear-gradient(to right, #0f2327, #1f5058);
    border: 0;
    padding: 8px 12px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
    transition: opacity 0.2s;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .lowHighBtn:hover:not(:disabled) {
    opacity: 0.9;
  }
  
  .lowHighBtn:disabled {
    cursor: not-allowed;
  }
  
  /* Suspended button styles - matching BetTableDragon */
  .suspended {
    position: relative;
    pointer-events: none;
    cursor: not-allowed;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .suspended::before {
    content: "";
    background-color: #1f5058;
    mask-image: url(../../../assets/img/lock.svg);
    -webkit-mask-image: url(../../../assets/img/lock.svg);
    mask-size: 20px 20px;
    -webkit-mask-size: 20px 20px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }
  
  .suspended::after {
    content: "";
    background: rgba(217, 220, 223) !important;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
  }
  
  /* Card icon styling */
  .cardIcon {
    display: inline-block;
    margin: 0 2px;
  }
  
  .cardRed {
    color: var(--color-text-danger);
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
  
  .cardBlack {
    color: var(--color-text-black);
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
  
  /* Card image styling */
  .cardImage {
    position: relative;
    display: inline-block;
  }
  
  .cardImage img {
    height: 65px;
    width: auto;
    object-fit: contain;
    display: block;
  }
  
  /* Suspended card image */
  .cardImage .suspended {
    position: relative;
  }
  
  .cardImage .suspended::before {
    content: "";
    background-color: #1f5058;
    mask-image: url(../../../assets/img/lock.svg);
    -webkit-mask-image: url(../../../assets/img/lock.svg);
    mask-size: 17px 17px;
    -webkit-mask-size: 17px 17px;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
  }
  
  .cardImage .suspended::after {
    content: "";
    background-color: var(--color-overlay-lock);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    cursor: not-allowed;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 1;
    border-radius: 4px;
  }
  
  /* Card seven styling */
  .card-seven {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .card-seven img {
    height: 65px;
    width: auto;
    object-fit: contain;
  }
  
  /* Utility classes */
  .m-t-5 {
    margin-top: 5px !important;
  }
  
  .m-t-10 {
    margin-top: 10px !important;
  }
  
  .m-r-5 {
    margin-right: 5px;
  }
  
  .m-l-5 {
    margin-left: 5px;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-right {
    text-align: right;
  }
  
  .ubook {
    font-size: 12px;
  }
  
  .min-max-val {
    font-size: 12px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .lowHighBtn {
      font-size: 12px;
      padding: 6px 8px;
    }
  
    .cardImage img,
    .card-seven img {
      height: 50px;
    }
  }
  
  @media (max-width: 480px) {
    .lowHighBtn {
      font-size: 11px;
      padding: 5px 6px;
      min-height: 40px;
    }
  
    .cardImage img,
    .card-seven img {
      height: 45px;
    }
  }
  