/* FootyMind Custom Styles */

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Spinner */
.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(34, 197, 94, 0.2);
  border-top-color: #22c55e;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Nav buttons */
.nav-btn {
  color: #9ca3af;
  background: transparent;
  transition: all 0.15s;
}
.nav-btn:hover {
  color: #e5e7eb;
  background: rgba(255,255,255,0.05);
}
.nav-btn.active {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}

/* Date nav buttons */
.date-nav-btn {
  background: #1e2d1a;
  border: 1px solid #263523;
  color: #9ca3af;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.15s;
}
.date-nav-btn:hover {
  background: #263523;
  color: #e5e7eb;
}

/* Match card */
.match-card {
  background: #0f1a13;
  border: 1px solid #1e2d1a;
  border-radius: 16px;
  transition: all 0.2s;
  cursor: pointer;
}
.match-card:hover {
  border-color: #22c55e;
  background: #162010;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.1);
}

/* Signal badges */
.signal-groen { background: rgba(34, 197, 94, 0.15); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); }
.signal-oranje { background: rgba(251, 146, 60, 0.15); color: #fb923c; border: 1px solid rgba(251, 146, 60, 0.3); }
.signal-rood { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); }

/* Modal tab */
.modal-tab {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
}
.modal-tab:hover {
  color: #e5e7eb;
}
.modal-tab.active {
  color: #22c55e;
  border-bottom-color: #22c55e;
}

/* Market card */
.market-card {
  background: #162010;
  border: 1px solid #1e2d1a;
  border-radius: 12px;
  padding: 14px;
}

/* Chat bubble */
.chat-bubble-user {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px 12px 4px 12px;
  padding: 10px 14px;
  font-size: 14px;
  max-width: 85%;
  margin-left: auto;
  color: #e5e7eb;
}
.chat-bubble-ai {
  background: #162010;
  border: 1px solid #1e2d1a;
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  font-size: 14px;
  max-width: 90%;
  color: #d1fae5;
}

/* Competition tag */
.comp-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 600;
}

/* Value bet card */
.value-card {
  background: #0f1a13;
  border: 1px solid #1e2d1a;
  border-radius: 16px;
  padding: 16px;
  border-left: 3px solid #22c55e;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0f0d; }
::-webkit-scrollbar-thumb { background: #263523; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #16a34a; }

/* Combi pick card */
.combi-pick {
  background: #0f1a13;
  border: 1px solid #1e2d1a;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
