/* tailwind.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom styles from your index.html */
body {
  font-family: 'Rajdhani', sans-serif;
}
.QBclr {
  background-color: #ffcccc;
}
.RBclr {
  background-color: #ccffcc;
}
.WRclr {
  background-color: #ffffcc;
}
.TEclr {
  background-color: #ccffff;
}
.DFclr {
  background-color: #ccccff;
}
.otc {
  background-color: #cccccc;
}
.drafted {
  background-color: #FFCCCC;
}
.user-drafted {
  background-color: #CCFFCC;
}

/* Tailwind utilities used in index.html */
.h-screen {
  height: 100vh;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-none {
  flex: none;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-auto {
  overflow-x: auto;
}
.p-4 {
  padding: 1rem;
}
.p-2 {
  padding: 0.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.w-full {
  width: 100%;
}
.w-44 {
  width: 11rem;
}
.w-8 {
  width: 2rem;
}
.table-fixed {
  table-layout: fixed;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.text-center {
  text-align: center;
}
.text-white {
  color: #ffffff;
}
.bg-gray-800 {
  background-color: #1f2937;
}
.bg-gray-600 {
  background-color: #4b5563;
}
.bg-red-800 {
  background-color: #991b1b;
}
.hover\:bg-gray-200:hover {
  background-color: #e5e7eb;
}
.cursor-pointer {
  cursor: pointer;
}
.h-10 {
  height: 2.5rem;
}
.justify-between {
  justify-content: space-between;
}