/* ============================================================
   Karnataka College & Cutoff Portal Custom CSS
   Compatible with Tailwind CSS & Native Web Browsers
   ============================================================ */

/* Table responsive wrapping */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
}

/* Master Cutoff Table Styling */
.cutoff-table {
  min-width: max-content;
  white-space: nowrap;
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.excel-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  min-width: max-content;
  white-space: nowrap;
}

.excel-table th {
  position: sticky;
  top: 0;
  background-color: #F0F9FF;
  z-index: 10;
  border-bottom: 2px solid #BAE6FD;
  border-right: 1px solid #E0F2FE;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px;
  text-align: left;
  font-weight: 800;
  color: #0369a1;
}

.excel-table td {
  border-bottom: 1px solid #E0F2FE;
  border-right: 1px solid #E0F2FE;
  padding: 8px 12px;
  font-size: 13px;
}

.excel-table tr:nth-child(even) {
  background-color: #F8FAFC;
}

.excel-table tr:hover {
  background-color: #F0F9FF;
}

.active-card {
  border-left: 4px solid #0284C7;
  background-color: #FFFFFF;
}

/* Modal Overlay Styling */
.modal-backdrop {
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
}

/* Scrollbar refinement */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

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

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

/* Print optimizations */
@media print {
  header, footer, .no-print {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
  }
}
