editor-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.editor-content ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.editor-content li {
    margin-bottom: 5px;
}

.loader-wrapper {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 0.361);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.loader {
    width: 72px;
    height: 72px;
    position: relative;
    border-radius: 50%;
    box-sizing: border-box;
    border-top: 5px solid var(--primary);
    border-right: 5px solid #fff0;
    animation: rotation 1s linear infinite;
}
.loader::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-sizing: border-box;
    border-bottom: 5px solid var(--secondary);
    border-left: 5px solid #fff0;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.table-custom {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.table-custom th {
    font-size: 14px;
    font-weight: 600;
    color: var(--title-color);
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.table-custom td {
    padding: 10px;
    border-bottom: 1px solid #f1f1f1;
    vertical-align: middle;
}

.table-custom tr:last-child td {
    border-bottom: none;
}

.table-custom th:nth-child(1),
.table-custom td:nth-child(1) {
    width: 40%;
}

.table-custom th:nth-child(2),
.table-custom td:nth-child(2) {
    width: 20%;
}

.table-custom th:nth-child(3),
.table-custom td:nth-child(3) {
    width: 40%;
}

.sr-more-btn-more {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    width: fit-content;
}

.multi-record-card {
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.multi-record-header {
    background: #f8f9fb;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.multi-record-body {
    padding: 15px;
}

.empty-section {
    background: #f9fafb;
    border: 1px dashed #ddd;
    border-radius: 10px;
    color: #777;
}

.empty-record {
    padding: 10px;
    background: #fff3cd;
    border-radius: 6px;
    font-size: 13px;
    color: #856404;
}

/* already exist replace */
.btn-step-next:hover {
    background: #700000;
    color: white;
    transform: translateY(-1px);
}

.table-responsive {
    border: 1px solid #eef2f7;
    border-radius: 8px;
    overflow: hidden;
}

.table-custom-design {
    margin-bottom: 0;
    border-collapse: collapse;
}

.table-custom-design thead th {
    background-color: #f8fbff;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    border-bottom: 1px solid #eef2f7;
    border-right: 1px solid #f1f5f9;
}

.table-custom-design thead th:last-child {
    border-right: none;
}

.table-custom-design tbody td {
    padding: 15px 20px;
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
    border-right: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.table-custom-design tbody tr:last-child td {
    border-bottom: none;
}

.table-custom-design tbody td:last-child {
    border-right: none;
}

.table-custom-design tbody tr:hover {
  background-color: #fcfdfe;
}


.pdf-file-preview-box {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  display: inline-block;
  width: 100%;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-img {
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.req-status.rejected {
    color: #bb4848;
}

.status-rejected-badge {
    display: inline-block;
    background: #ffebeb;
    color: #d90606;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.status-accepted-badge {
    display: inline-block;
    background: #f0fdf4;
    color: #22c55e;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
}

.status-badge.accepted {
    background: #f0fdf4;
    color: #22c55e;
}

.status-badge.rejected {
    background: #ffebeb;
    color: #d90606;
}

/* Remove up/down arrows from input type number */ /* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
} /* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.modal-header .text-primary {
    color: var(--primary) !important;
}

.no-data-container {
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.no-data-img {
  max-width: 300px;
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
  animation: floatingNoData 3s ease-in-out infinite;
}
@keyframes floatingNoData {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}