/* Enhanced Table Styling for SRM NCR Eoffice */
.table-container {
  overflow-x: auto;
  width: 100%;
  border-radius: 0.5rem;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.table-fixed {
  table-layout: fixed;
  width: 100% !important;
}

table {
  width: 100% !important;
  margin-bottom: 0 !important;
}

/* Table Cell Handling */
.whitespace-no-wrap {
  white-space: nowrap !important;
}

/* Table Style Overrides for White Theme */
.bg-white table {
  background-color: white !important;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* Responsive Table Adjustments */
@media (max-width: 768px) {
  .table-container {
    max-width: 100%;
    overflow-x: auto;
  }
  
  table {
    min-width: 650px;
  }
} 