/* Container fluid 5 styles */
.container-fluid-5,
.container-5 {
  padding-left: 5px;
  padding-right: 5px;
}

/* Meter card container */
.meter-lh-card-container {
  background-color: #ccc;
  padding: 5px 0;
  text-align: center;
}

.meter-lh-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 5px;
}

.meter-lh-card img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.cmeter-count {
  font-weight: bold;
  margin-left: 5px;
}

/* Meter content */
.meter-content {
  margin-bottom: 10px;
}

.meter-content button {
  width: 100%;
  margin-bottom: 5px;
}

.meter-content .text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding: 10px;
}

.meter-content .text-center img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Button theme */
.btn-theme {
  color: #fff;
  background-image: linear-gradient(to right, #0f2327, #1f5058);
  width: 100%;
  border-radius: 4px;
  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);
  border: 0;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 20px;
}

.btn-theme:disabled {
  cursor: not-allowed;
}

/* Suspended button styles - matching BetTableTeenPatti20c */
.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;
}

/* Utility classes */
.mt-1 {
  margin-top: 5px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-1 {
  margin-left: 5px;
}

.text-center {
  text-align: center;
}

.float-right {
  float: right;
}

.d-inline-block {
  display: inline-block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .meter-lh-card img {
    height: 40px;
  }

  .meter-content .text-center img {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .meter-lh-card img {
    height: 35px;
  }

  .meter-content .text-center img {
    height: 30px;
  }
}

