:root {
  --bg-color: #F2F6FC;
  --text-color: #3F3F3F;
  
  /* Team Colors */
  --color-men: #D71920;
  --color-women: #BA2CA7;
  --color-u21: #008F76;
  --color-veterans: #D9AA2E;
  --color-academy-borivali: #87FBF3;
  --color-academy-koparkhairane: #87FBF3;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar for sleek look */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #e2e8f0; 
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1; 
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8; 
}

/* Calendar Grid specific minimal borders */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  border-top: 1px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
}

.calendar-cell {
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  min-height: 120px;
}

/* Smooth modal transitions */
.modal-overlay {
  animation: fadeIn 0.2s ease-out forwards;
}

.modal-content {
  animation: slideUp 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Card hover animation */
.event-card {
  transition: transform 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.event-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

/* Form inputs focus transition */
input, select, textarea {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
