
.container {
  padding: 30px;
}

.title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #001f3f;
}

.form-box {
  background: white;
  padding: 25px;
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.btn {
  background: #0074D9;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  padding: 15px;
}

.card {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 0 8px lightgray;
  text-align: center;
}

.player-img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f5f5f5;
  border-radius: 10px;
}

.hero {
  text-align: center;
  padding: 60px 20px;
}

.main-title {
  font-size: 45px;
  font-weight: bold;
  color: #001f3f;
}

.subtitle {
  font-size: 18px;
  color: #444;
  max-width: 600px;
  margin: 20px auto;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 30px;
}

.btn.outline {
  background: transparent;
  border: 2px solid #0074D9;
  color: #0074D9;
}

.btn.outline:hover {
  background: #0074D9;
  color: white;
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.form-subtitle {
  color: #555;
  margin-bottom: 20px;
  font-size: 16px;
}

.form-box p {
  text-align: left;
  margin-bottom: 15px;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid lightgray;
  border-radius: 8px;
  font-size: 14px;
}

.form-box input:focus,
.form-box select:focus {
  outline: none;
  border-color: #0074D9;
  box-shadow: 0 0 5px #0074D9;
}
.subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.player-name {
  font-size: 20px;
  margin: 10px 0;
  color: #001f3f;
}

.role-badge {
  display: inline-block;
  background: #0074D9;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 10px;
}

.price {
  font-weight: bold;
  color: #222;
  margin-top: 10px;
}

.sold {
  color: green;
  font-weight: bold;
  margin-top: 8px;
}

.available {
  color: #ff6600;
  font-weight: bold;
  margin-top: 8px;
}
.player-id {
  font-size: 14px;
  color: #444;
  margin-bottom: 8px;
}

.doc-link {
  color: #0074D9;
  font-weight: bold;
  text-decoration: none;
}

.doc-link:hover {
  text-decoration: underline;
}
.form-box label {
  font-weight: bold;
}

.form-box input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}
/* ✅ Mobile Responsive Design */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    text-align: center;
  }

  .navbar a {
    display: block;
    margin: 8px 0;
  }

  .main-title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 15px;
    padding: 0 10px;
  }

  .btn {
    width: 90%;
    display: block;
    margin: 10px auto;
  }

  .player-img {
    height: 180px;
  }

  .card {
    padding: 12px;
  }
}
@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 10px;
  }
}
.auction-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 14px;
  background:#e63946;
  color:white;
  text-decoration:none;
  border-radius:8px;
  font-weight:600;
}

.auction-btn:hover{
  background:#c1121f;
}
/* =========================
   🧾 AUCTION POOL TEXT FIX
========================= */

.title{
  color:#ffffff !important;
  text-align:center;
  font-size:32px;
  font-weight:900;
  margin-bottom:8px;
  text-shadow:0 0 12px rgba(56,189,248,.25);
}

.subtitle{
  color:#cbd5f1 !important;
  text-align:center;
  margin-bottom:30px;
}

/* player cards text */

.card{
  color:#0f172a !important;
}

.card h3{
  color:#0f172a !important;
  font-weight:900;
}

.card p{
  color:#334155 !important;
  font-weight:600;
}

.player-id{
  color:#475569 !important;
}

/* badges */

.role-badge{
  background:#1d4ed8;
  color:white !important;
}
