/* Options Button in Game Line */

#options-modal {
    position:absolute;
    top:50%;
    left:50%;
    display:none;
    transform: translate(-50%,-50%);
}   


.btn-options-trigger {
  background: #f1c40f;
  color: #000;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 10px;
  transition: transform 0.1s ease;
}
.btn-options-trigger:hover { transform: scale(1.05); }

/* Modal Content Box */
.options-modal-content {
  background: #1a252f;
  border: 3px solid #f1c40f;
  border-radius: 12px;
  width: 90%;
  max-width: 480px;
  padding: 20px;
  color: #fff;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.7);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.btn-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

.option-group { margin: 15px 0; text-align: left; }
.option-label { font-weight: bold; color: #f1c40f; display: block; margin-bottom: 8px; }
.modal-divider { border: 0; height: 1px; background: rgba(255,255,255,0.1); margin: 15px 0; }

/* Bootstrap-like Form Controls */
.form-check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.form-check-input { width: 18px; height: 18px; cursor: pointer; }
.form-range-group { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.form-range { width: 100%; cursor: pointer; }

.form-select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #444;
  background: #2c3e50;
  color: #fff;
  font-size: 1rem;
}

/* Stats Cards Layout */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.stat-card {
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-title { display: block; font-size: 0.8rem; color: #aaa; }
.stat-value { font-size: 1.2rem; font-weight: bold; color: #2ecc71; }

.modal-footer { text-align: right; margin-top: 20px; }
.btn-primary {
  background: #27ae60;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}
.btn-primary:hover { background: #2ed573; }
