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);
  }
}

.downloadBtn_invoiced {
  height: 48px;
  width: 48px;
  border-radius: 100%;
  border: 1px solid var(--secondary);
  background: var(--secondary);
  color: var(--black-color);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-content {
    color: #333;
    line-height: 1.6;
}
.editor-content h1, .editor-content h2, .editor-content h3,
.editor-content h4, .editor-content h5, .editor-content h6 {
    color: #2c3e50;
}
.editor-content ul {
    list-style-type: disc;
    margin-left: 20px;
}
.editor-content ol {
    list-style-type: decimal;
    margin-left: 20px;
}
.editor-content li {
    margin-bottom: 5px;
}
.editor-content a {
    color: #3498db;
    text-decoration: none;
}
.editor-content a:hover {
    text-decoration: underline;
}
.editor-content table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}
.editor-content table, .editor-content th, .editor-content td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}
.editor-content th {
    background-color: #f2f2f2;
}
.editor-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}
.editor-content blockquote {
    border-left: 4px solid #ccc;
    margin: 20px 0;
    padding-left: 15px;
    color: #666;
}
.editor-content b, .editor-content strong {
    font-weight: bold;
}
.editor-content i, .editor-content em {
    font-style: italic;
}


.blog-share-section {
    border-color: #eee !important;
}
.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #444;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.share-btn:hover {
    background: #9b0000;
    color: #fff;
    border-color: #9b0000;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(155, 0, 0, 0.2);
}
.share-btn.whatsapp:hover { background: #25D366; border-color: #25D366; }
.share-btn.facebook:hover { background: #1877F2; border-color: #1877F2; }
.share-btn.twitter:hover { background: #000000; border-color: #000000; }
.share-btn.copy-link:hover { background: #9b0000; border-color: #9b0000; }
.fw-600 { font-weight: 600; }