.result-row {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
  justify-content: flex-end;
}

/* Base styling for result circles */
.casino-last-results .result-circle {
  background: #355e3b;
  color: #fff;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  margin-left: 5px;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.casino-last-results .result-circle:hover {
  transform: scale(1.1);
}

/* Card32 specific result colors */
.card32 .casino-last-results .result-circle.result-player-8 {
  background-color: #086cb8;
  color: #fff;
}

.card32 .casino-last-results .result-circle.result-player-9 {
  background-color: #ae2130;
  color: #fff;
}

.card32 .casino-last-results .result-circle.result-player-10 {
  background-color: #4caf50;
  color: #fff;
}

.card32 .casino-last-results .result-circle.result-player-11 {
  background-color: #ff9800;
  color: #fff;
}

/* Responsive design for smaller screens */
@media only screen and (max-width: 1199px) {
  .casino-last-results .result-circle {
    width: 25px;
    height: 25px;
  }
}

/* h4 styles */
h4, .h4 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .h4, h4 {
    font-size: 1.5rem;
  }
}

/* text-warning class */
.text-warning {
  --bs-text-opacity: 1;
  --bs-warning-rgb: 255, 193, 7; /* Bootstrap warning color fallback */
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.casino-result-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
}

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

@media (min-width: 1200px) {
  .result-title {
    font-size: 1.5rem;
  }
}

.casino-winner-icon {
  color: #4caf50;
  font-size: 24px;
}

.casino-winner-icon i {
  color: #4caf50;
}

.casino-winner-announcement {
  background-color: white;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.card-image {
  width: auto;
  height: 120px;
  object-fit: contain;
  border-radius: 4px;
  border: 2px solid #ffd700;
}
