.accident-list-page {
    min-height: 100vh;
    background: #eef1f7;
    padding: 38px 32px;
}

.list-card {
    background: #fff;
    border-radius: 12px;
    padding: 38px 44px 28px;
    box-shadow: 0 10px 32px rgba(15, 23, 42, .04);
}

.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.list-toolbar h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.list-filter {
    display: grid;
    grid-template-columns: 150px 150px 150px 280px;
    gap: 12px;
}

.date-input,
.search-input {
    position: relative;
}

.date-input input,
.search-input input,
.list-filter select {
    width: 100%;
    height: 36px;
    border: 1px solid #dfe5ec;
    border-radius: 4px;
    padding: 0 36px 0 12px;
    font-size: 13px;
    color: #374151;
    outline: none;
    background: #fff;
}

.search-input input {
    padding-left: 38px;
}

.date-input i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #374151;
}

.search-input i {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
}

.date-input input::placeholder,
.search-input input::placeholder {
    color: #c8d0d8;
}

.accident-table {
    width: 100%;
    border-collapse: collapse;
}

.accident-table thead {
    background: #e6f5ec;
}

.accident-table th {
    padding: 21px 14px;
    font-size: 13px;
    font-weight: 800;
    color: #2f3437;
    letter-spacing: .4px;
    text-align: left;
}

.accident-table th:first-child {
    text-align: center;
}

.accident-table td {
    padding: 15px 14px;
    border-bottom: 1px solid #edf0f4;
    vertical-align: top;
    font-size: 14px;
    color: #343a40;
}

.accident-table td:first-child {
    text-align: center;
}

.accident-title {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 4px;
    color: #333;
}

.accident-table small {
    display: block;
    font-size: 10px;
    line-height: 1.45;
    color: #7d8490;
}

.status-count {
    text-align: center;
    margin-top: 14px;
    margin-bottom: 7px;
    font-size: 14px;
    color: #333;
}

.status-badge {
    min-width: 78px;
    height: 21px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
}

.status-badge.pending {
    background: #f6c94f;
}

.action-group {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.action-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.action-btn.orange {
    background: #ff8738;
}

.action-btn.green {
    background: #21bf83;
}

.action-btn.blue {
    background: #4f80e8;
}

.pagination-box {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.pagination-box .page-link {
    min-width: 34px;
    height: 34px;
    border: 1px solid #dfe5ec;
    color: #374151;
    font-size: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -1px;
    background: #fff;
}

.pagination-box .page-link.active {
    background: #98d9b1;
    border-color: #98d9b1;
    color: #fff;
}

.pagination-box .page-link.disabled {
    color: #9bb3d7;
    background: #f8fafc;
}

@media (max-width: 1200px) {
    .list-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .list-filter {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .accident-list-page {
        padding: 22px;
    }

    .list-card {
        padding: 24px 18px;
    }

    .list-filter {
        grid-template-columns: 1fr;
    }
}
.pagination-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 24px;
}

.pagination-box .page-link {
    min-width: 36px;
    height: 34px;
    padding: 0 12px;
    margin: 0 3px;

    border: 1px solid #dce3ec;
    border-radius: 6px;

    background: #fff;
    color: #374151;

    font-size: 13px;
    font-weight: 500;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    transition: .2s;
}

.pagination-box .page-link:hover {
    background: #f4f7fb;
    color: #148a43;
}

.pagination-box .page-link.active {
    background: #97d8ad;
    border-color: #97d8ad;
    color: #fff;
}

.pagination-box .page-link.disabled {
    color: #a7b8d8;
    background: #f8fafc;
    pointer-events: none;
}
.status-badge.pending {
    background: #f4cb58;
    color: #fff;
}

.status-badge.overdue {
    background: #d62828;
    color: #fff;
}

.status-badge.completed {
    background: #1ca64c;
    color: #fff;
}
.status-badge.draft {
    background: #d9dde3;
    color: #5f6773;
}

.status-count {
    text-align: center;
    margin-top: 14px;
    margin-bottom: 7px;
    font-size: 13px;
    color: #7b8492;
    font-weight: 500;
}
.accident-table td {
    vertical-align: middle;
}
.status-column {
    text-align: center;
    vertical-align: middle;
}

.status-column .status-count {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}

.status-column .status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.report-ng-table th,
.report-ng-table td {
    vertical-align: middle;
}

.report-ng-table th:nth-child(1),
.report-ng-table td:nth-child(1),
.report-ng-table th:nth-child(4),
.report-ng-table td:nth-child(4),
.report-ng-table th:nth-child(5),
.report-ng-table td:nth-child(5),
.report-ng-table th:nth-child(6),
.report-ng-table td:nth-child(6) {
    text-align: center;
}

.report-ng-table th:nth-child(2),
.report-ng-table td:nth-child(2),
.report-ng-table th:nth-child(3),
.report-ng-table td:nth-child(3) {
    text-align: left;
}

.report-ng-table .accident-no {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
}

.company-text {
    font-size: 14px;
    line-height: 1.65;
    color: #333;
}

.status-badge.completed {
    background: #16a34a;
    color: #fff;
}

.status-badge.pending {
    background: #f4c84f;
    color: #fff;
}

.report-ng-table .action-group {
    justify-content: center;
    margin-top: 0;
}
