html {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    scroll-behavior: smooth;
}
h1 {
    color: #333;
}
form {
    padding: 0 !important;
    border-radius: 8px;
    box-shadow: none !important;
}
button, [type="submit"], [type="button"] {
    cursor: pointer !important;
}
input[type="text"], input[type="password"], input[type="file"] {
    border: 1px solid #bcd0ee;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 1rem;
    background: #f8fbff;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: 0 1px 2px 0 #e3e8f0;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="file"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb33;
    background: #fff;
}

/* DataTables Customization for Tailwind look */
.dt-container table.dataTable {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: transparent !important;
    font-size: 1rem;
    color: #1e293b; /* text-slate-800 */
}
.dt-container table.dataTable tbody td {
    background: transparent !important;
    color: #334155 !important; /* text-slate-700 */
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    border-bottom: 1px solid #e0e7ef !important;
}
.dt-container table.dataTable tbody tr:nth-child(even) td {
    background: #f1f5fd !important; /* bg-blue-50 */
}
.dt-container table.dataTable tbody tr:hover td {
    background: #e0e7ef !important; /* hover:bg-blue-100 */
}
.dt-container .paginate_button,
.dt-container .dt-paging-button {
    background: #fff !important;
    border: 1px solid #bfdbfe !important;
    color: #2563eb !important;
    border-radius: 0.375rem !important; /* rounded-md */
    margin: 0 0.125rem;
    padding: 0.25rem 0.75rem !important;
    font-weight: 600;
    transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

/* Current page: lighter bg, darker text for contrast, less blue */
.dt-container .paginate_button.current,
.dt-container .dt-paging-button.current {
    background: #e0e7ef !important; /* light gray-blue */
    color: #1e40af !important;      /* text-blue-900 */
    border-color: #2563eb !important;
    z-index: 2;
    box-shadow: 0 2px 8px 0 #2563eb22;
}

/* Hover: blue bg, white text, subtle shadow */
.dt-container .paginate_button:not(.current):hover,
.dt-container .dt-paging-button:not(.current):hover {
    background: #2563eb !important;
    color: #fff !important;
    border-color: #2563eb !important;
    box-shadow: 0 2px 8px 0 #2563eb22;
    z-index: 2;
}

/* Prev/Next: keep icon/text visible on hover */
.dt-container .paginate_button.previous:not(.current):hover,
.dt-container .dt-paging-button.previous:not(.current):hover,
.dt-container .paginate_button.next:not(.current):hover,
.dt-container .dt-paging-button.next:not(.current):hover {
    background: #1e40af !important; /* darker blue for prev/next */
    color: #fff !important;
    border-color: #1e40af !important;
}

/* Disabled prev/next button style */
.dt-container .paginate_button.disabled,
.dt-container .dt-paging-button.disabled {
    background: #f1f5fd !important;
    color: #94a3b8 !important; /* text-slate-400 */
    border-color: #bfdbfe !important;
    cursor: not-allowed !important;
    opacity: 0.7;
    box-shadow: none !important;
    pointer-events: none !important;
}

.dt-container .dataTables_length select,
.dt-container .dataTables_filter input {
    border: 1px solid #bcd0ee;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8fbff;
    font-size: 1rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.dt-container .dataTables_filter label,
.dt-container .dataTables_length label {
    font-weight: 500;
    color: #1e293b;
    margin-right: 0.5rem;
}
.dt-container .dataTables_info {
    color: #64748b;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.dt-container .dataTables_paginate {
    margin-top: 1rem;
    text-align: right;
}
.dt-container .dataTables_length,
.dt-container .dataTables_filter {
    margin-bottom: 1rem;
}
.dt-container .dataTables_filter {
    text-align: right;
}
.dt-container .dataTables_length {
    text-align: left;
}
ul.list-disc {
  list-style: disc !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  display: block !important;
}
ul.list-disc li {
  display: list-item !important;
  list-style: disc inside !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
  background: none !important;
}
table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
  border-bottom: none !important;
}