@charset "utf-8";

/* ==========================================================================
   1. [기존] AUTO SPORTS PLUGIN STYLES (User Original)
   ========================================================================== */

/* 공통 유틸리티 */
.odds-wrapper {
  padding: 30px 0;
  background-color: #fcfcfc;
  min-height: 800px;
}
.odds-title-area {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #333;
}
.odds-title-area h2 {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

/* 스포츠 탭 (구버전 호환용) */
.sport-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.sport-tab-btn {
  padding: 8px 18px;
  margin: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #7f8c8d;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 20px;
  transition: all 0.2s;
}
.sport-tab-btn:hover {
  background: #f1f2f6;
  color: #333;
}
.sport-tab-btn.active {
  background: #2c3e50;
  color: #fff;
  border-color: #2c3e50;
}

/* 리스트 테이블 (분석센터 구버전) */
.odds-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  table-layout: fixed;
}
.odds-table th {
  background: #34495e;
  color: #fff;
  padding: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}
.odds-table td {
  padding: 12px 6px;
  border-bottom: 1px solid #eee;
  text-align: center;
  color: #444;
  font-size: 14px;
  vertical-align: middle;
}

/* 위젯 테이블 (메인) */
.ms-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.ms-box {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.ms-header {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fcfcfc;
}
.ms-title {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
}
.ms-title i {
  margin-right: 6px;
}
.ms-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.ms-table th {
  background: #f8f9fa;
  font-size: 12px;
  color: #666;
  padding: 8px 0;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.ms-table td {
  padding: 8px 5px;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13px;
  color: #444;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.2s;
}
.ms-table tr:hover td {
  background: #f0f4f8;
}
.ms-table tr:last-child td {
  border-bottom: none;
}

/* 팀/배당 스타일 (구버전) */
.team-cell {
  text-align: left !important;
  padding-left: 10px !important;
}
.league-name-small {
  display: block;
  font-size: 11px;
  color: #999;
  margin-bottom: 4px;
}
.team-name {
  font-weight: bold;
  font-size: 14px;
  color: #2c3e50;
}

/* VS 뱃지 */
.vs-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: #95a5a6;
  padding: 2px 6px;
  border-radius: 10px;
  margin: 0 6px;
  vertical-align: middle;
  text-transform: lowercase;
}

.odd-btn {
  display: block;
  width: 100%;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}
.odd-btn:hover {
  background: #f1f2f6;
  border-color: #bbb;
}
.odd-btn.win {
  color: #e74c3c;
  border-color: #fadbd8;
  background: #fdfefe;
}
.odd-btn.draw {
  color: #2c3e50;
}
.odd-btn.lose {
  color: #3498db;
  border-color: #d6eaf8;
  background: #fdfefe;
}
.odd-btn:hover.win {
  background: #ffeceb;
}
.odd-btn:hover.lose {
  background: #ebf5fb;
}

/* 위젯용 미니 배당박스 */
.ms-odds-cell {
  text-align: center;
  white-space: nowrap;
}
.ms-odd-box {
  display: inline-block;
  padding: 2px 0;
  font-size: 11px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 32px;
  text-align: center;
  margin: 0 1px;
}

/* 버튼 및 뱃지 */
.btn-analyze {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}
.status-wait {
  background: #95a5a6;
  color: #fff;
}
.status-wait:hover {
  background: #7f8c8d;
}
.status-done {
  background: #27ae60;
  color: #fff;
}
.status-done:hover {
  background: #219150;
}

.badge-hot {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  margin-left: 8px;
  vertical-align: text-bottom;
  animation: pulse 2s infinite;
}
.badge-rec {
  display: inline-block;
  background: #3498db;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: bold;
  margin-left: 8px;
  vertical-align: text-bottom;
}
.ms-badge {
  display: inline-block;
  font-size: 9px;
  padding: 1px 4px;
  border-radius: 3px;
  color: #fff;
  margin-left: 4px;
  font-weight: bold;
  vertical-align: middle;
}
.bg-hot {
  background: #e74c3c;
  animation: pulse 1.5s infinite;
}
.bg-rec {
  background: #3498db;
}
.bg-done {
  background: #27ae60;
}

/* 기존 베팅 슬립 (ID 충돌 방지를 위해 유지하되, 리스트 페이지에선 #bet_slip_layer 사용) */
#bet-slip-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  overflow: hidden;
  font-family: "Noto Sans KR", sans-serif;
  border: 1px solid #ddd;
}
.bs-header {
  background: #2c3e50;
  color: #fff;
  padding: 12px 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.bs-header .bs-count {
  background: #e74c3c;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
}
.bs-body {
  max-height: 350px;
  overflow-y: auto;
  background: #f9f9f9;
  padding: 10px;
}
.bs-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.bs-item .bs-match {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
  font-weight: 500;
}
.bs-item .bs-pick-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bs-item .bs-pick {
  font-weight: 800;
  color: #2c3e50;
  font-size: 14px;
}
.bs-item .bs-odds {
  color: #e74c3c;
  font-weight: 800;
  background: #fff5f5;
  padding: 2px 6px;
  border-radius: 4px;
}
.bs-item .bs-del {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ccc;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s;
}
.bs-item .bs-del:hover {
  color: #e74c3c;
}
.bs-footer {
  padding: 15px;
  background: #fff;
  border-top: 1px solid #eee;
}
.bs-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: #555;
}
.bs-input-wrap {
  margin: 15px 0;
  position: relative;
}
.bs-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: right;
  font-weight: bold;
  font-size: 16px;
  box-sizing: border-box;
}
.bs-input:focus {
  border-color: #3498db;
  outline: none;
}
.bs-input-label {
  position: absolute;
  left: 10px;
  top: 12px;
  font-size: 12px;
  color: #999;
}
.bs-btn-submit {
  width: 100%;
  padding: 14px;
  background: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}
.bs-btn-submit:hover {
  background: #c0392b;
}

/* 이용 가이드 박스 */
.user-guide-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 25px;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.user-guide-box h4 {
  font-size: 14px;
  font-weight: bold;
  color: #2c3e50;
  margin: 0 0 8px 0;
}
.user-guide-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.user-guide-box li {
  margin-bottom: 4px;
  display: flex;
  align-items: start;
}
.user-guide-box i.fa-check-circle {
  color: #27ae60;
  margin-right: 6px;
  margin-top: 3px;
}
.user-guide-box strong {
  color: #e74c3c;
  font-weight: bold;
}

/* 로딩 및 애니메이션 */
#loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  text-align: center;
  padding-top: 20%;
  color: #fff;
}
#widget-loader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  text-align: center;
  padding-top: 20%;
  color: #fff;
}
.spinner {
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-bottom: 15px;
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* [나의 베팅 내역] 페이지 스타일 (Dark Theme) */
.bet-history-container {
  padding: 20px 0;
  max-width: 1000px;
  color: #fff;
}
.bet-box {
  background-color: #2b2b2b;
  border: 1px solid #444;
  border-radius: 5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.bet-header {
  background-color: #383838;
  padding: 12px 15px;
  border-bottom: 1px solid #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ccc;
}
.bet-content {
  padding: 15px;
}
.bet-footer {
  background-color: #303030;
  padding: 12px 15px;
  border-top: 1px solid #444;
  text-align: right;
  color: #eee;
}
.table-dark-custom {
  width: 100%;
  margin: 0;
  font-size: 13px;
  text-align: center;
  color: #ddd;
  border-collapse: collapse;
}
.table-dark-custom th {
  background-color: #1f1f1f;
  border: 1px solid #444;
  padding: 8px;
  color: #aaa;
}
.table-dark-custom td {
  border: 1px solid #444;
  padding: 8px;
  vertical-align: middle;
}
.badge-ing {
  background: #555;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
}
.badge-win {
  background: #e74c3c;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
}
.badge-lose {
  background: #007bff;
  color: #fff;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
}
.empty-bet-box {
  text-align: center;
  padding: 80px;
  background: #2b2b2b;
  border: 1px solid #444;
  border-radius: 5px;
  color: #888;
}

/* [관리자] 페이지 스타일 */
.admin-wrap {
  padding: 30px 0;
  min-height: 600px;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #444;
  padding-bottom: 15px;
}
.admin-header h2 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background-color: #2b2b2b;
  color: #ddd;
}
.admin-table th {
  background-color: #1f1f1f;
  color: #eee;
  padding: 12px;
  border: 1px solid #444;
  text-align: center;
  font-weight: bold;
}
.admin-table td {
  padding: 10px;
  border: 1px solid #444;
  text-align: center;
  vertical-align: middle;
}
.admin-table tr:hover {
  background-color: #333;
}
.btn-settle {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.btn-settle:hover {
  background-color: #c0392b;
}
.btn-detail {
  background-color: #555;
  color: #fff;
  border: 1px solid #666;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 12px;
}
.btn-detail:hover {
  background-color: #777;
}

/* 라이브 뱃지 애니메이션 */
.badge-live {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 3px;
  animation: blink-animation 1.5s infinite;
}
@keyframes blink-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
.time-live {
  color: #e74c3c !important;
  font-weight: bold;
}

/* ==========================================================================
   2. [신규 v9.0] 스포츠 리스트 & 베팅 슬립 UI (Sports List Page)
   ========================================================================== */

/* 전체 컨테이너 및 여백 확보 */
.sp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
  font-family: "Notosans KR", sans-serif;
}
body {
  padding-bottom: 100px;
} /* 슬립이 가리지 않도록 하단 여백 추가 */

/* 상단 내비게이션 */
.sp-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.sp-nav a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  background: #f1f3f5;
}
.sp-nav a:hover {
  background: #333;
  color: #fff;
}
.sp-date {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
}

/* 종목 탭 (리스트 페이지용) */
.sp-tabs {
  margin-bottom: 15px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.sp-tab {
  display: inline-block;
  padding: 8px 18px;
  margin-right: 5px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #ddd;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}
.sp-tab.active {
  background: #e74c3c;
  color: #fff;
  border-color: #e74c3c;
  font-weight: bold;
}
.sp-tab:hover {
  background: #f8f9fa;
  color: #333;
}

/* 리스트 테이블 */
.sp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.sp-row {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sp-row td {
  padding: 12px 10px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.sp-row td:first-child {
  border-left: 1px solid #eee;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.sp-row td:last-child {
  border-right: 1px solid #eee;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* 1열: 시간/종목 */
.info-box {
  text-align: center;
  min-width: 60px;
}
.sp-time {
  display: block;
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
  font-family: "Roboto", sans-serif;
}
.sp-sport-badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
  color: #fff;
  background: #999;
}

/* 2열: 팀 정보 */
.team-box {
  text-align: left;
  padding-left: 10px;
}
.sp-league {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}
.sp-team-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.sp-team-name {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.sp-score {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #e74c3c;
}

/* 3열: 승무패 배당 (한 줄 정렬 Grid) */
.odds-container {
  display: flex;
  gap: 5px;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}
.odds-btn {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  align-items: center;
}
.odds-btn:hover {
  background: #e9ecef;
  border-color: #bbb;
}
.odds-btn.selected {
  background: #2c3e50;
  color: #fff;
  border-color: #2c3e50;
}
.odds-btn.selected .od-label,
.odds-btn.selected .od-rate {
  color: #fff;
}
.odds-btn.empty {
  background: none;
  border: 0;
  cursor: default;
}
.od-label {
  font-size: 11px;
  color: #888;
}
.od-rate {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: #333;
  font-size: 13px;
}

/* 4열: 분석 아이콘 */
.anal-box {
  text-align: center;
  width: 50px;
}
.btn-anal {
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s;
}
.btn-anal.on {
  color: #3498db;
}
.btn-anal:hover {
  transform: scale(1.2);
}

/* --- [NEW] v9.0 베팅 슬립 레이어 (Fixed Bottom) --- */
#bet_slip_layer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  overflow: hidden;
  border: 1px solid #ddd;
}
.slip-header {
  background: #2c3e50;
  color: #fff;
  padding: 12px 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slip-count {
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
}
.slip-content {
  max-height: 300px;
  overflow-y: auto;
  background: #f8f9fa;
  padding: 10px;
}
.slip-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 8px;
  position: relative;
}
.slip-item-title {
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
  font-weight: bold;
}
.slip-item-pick {
  font-size: 13px;
  color: #e74c3c;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}
.btn-del-pick {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
}
.btn-del-pick:hover {
  color: #e74c3c;
}

.slip-footer {
  padding: 15px;
  background: #fff;
  border-top: 1px solid #eee;
}
.slip-input-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 13px;
}
.slip-input {
  width: 100px;
  text-align: right;
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 4px;
}
.btn-bet-submit {
  width: 100%;
  background: #e74c3c;
  color: #fff;
  border: 0;
  padding: 12px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
}
.btn-bet-submit:hover {
  background: #c0392b;
}

/* 모바일 반응형 (v9.0 대응) */
@media (max-width: 768px) {
  #bet_slip_layer {
    width: 100%;
    bottom: 0;
    right: 0;
    border-radius: 15px 15px 0 0;
  }
  .sp-row td {
    display: block;
    width: 100% !important;
    border: 0;
    text-align: center;
    padding: 5px;
  }
  .odds-container {
    max-width: 100%;
    margin-top: 10px;
  }
  .anal-box {
    position: absolute;
    right: 10px;
    top: 10px;
    width: auto;
  }
  .sp-row {
    position: relative;
    padding-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  .team-box {
    text-align: center;
  }
  .sp-team-row {
    justify-content: center;
    gap: 10px;
  }
}

/* ==========================================================================
   3. [신규 v9.0] 분석글 본문 내 배당 버튼 스타일 (Analysis Content)
   ========================================================================== */
.anal-bet-box {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  margin: 30px 0;
}
.anal-bet-title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #2c3e50;
}
.anal-odds-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 10px 0;
  border: 0;
  margin: 0;
}
.anal-odds-td {
  vertical-align: top;
  padding: 0;
  border: 0;
}
.btn-action-bet {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s;
  text-decoration: none !important;
}
.btn-action-bet:hover {
  background: #f1f3f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.btn-action-bet.selected {
  background: #2c3e50;
  color: #fff;
  border-color: #2c3e50;
} /* 선택시 */
.btn-action-bet .bet-label {
  font-size: 13px;
  font-weight: bold;
  color: #555;
  margin-bottom: 5px;
  display: block;
}
.btn-action-bet.selected .bet-label {
  color: #fff;
}
.btn-action-bet .bet-rate {
  font-size: 20px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  display: block;
}
.rate-win {
  color: #e74c3c;
} /* 승 */
.rate-draw {
  color: #2c3e50;
} /* 무 */
.rate-lose {
  color: #3498db;
} /* 패 */
