/* Front End Submission — Frontend Styles
   Designed & Developed by Instant Web Tools, LLC
   https://instantwebtools.co
*/

.fes-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    color: #1f2937;
    margin: 0 0 24px;
}

/* ── Title & Count ───────────────────────────────── */
.fes-title {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.fes-count-bar {
    margin-bottom: 14px;
}

.fes-badge {
    display: inline-block;
    background: #1e3a5f;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
}

/* ── Table ───────────────────────────────────────── */
.fes-table-wrap {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.fes-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 13.5px;
}

.fes-table thead th {
    background: #1e3a5f;
    color: #fff;
    text-align: left;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.fes-table thead th.fes-col-num {
    width: 44px;
    text-align: center;
}

.fes-table thead th.fes-col-date {
    width: 160px;
}

.fes-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.12s;
}

.fes-table tbody tr:last-child {
    border-bottom: none;
}

.fes-table tbody tr:hover {
    background: #f8fafc;
}

.fes-table tbody td {
    padding: 11px 16px;
    color: #374151;
    vertical-align: top;
    line-height: 1.55;
}

.fes-table tbody td.fes-col-num {
    text-align: center;
    color: #9ca3af;
    font-size: 12px;
    font-weight: 600;
}

.fes-table tbody td.fes-col-date {
    color: #6b7280;
    font-size: 12px;
    white-space: nowrap;
}

/* ── Empty State ─────────────────────────────────── */
.fes-empty {
    text-align: center;
    padding: 48px 24px;
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 8px;
}

.fes-empty-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.fes-empty p {
    margin: 0 0 8px;
    color: #6b7280;
}

.fes-empty-hint {
    font-size: 12px !important;
    color: #9ca3af !important;
}

.fes-empty code {
    background: #e5e7eb;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
}

/* ── Error ───────────────────────────────────────── */
.fes-error {
    color: #991b1b;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
    .fes-table {
        font-size: 12px;
    }
    .fes-table thead th,
    .fes-table tbody td {
        padding: 9px 10px;
    }
}

