.status-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin: 30px auto 100px auto;
    max-width: 900px;
    border: 1px solid #eaeaea;
    text-align: left;
}
.status-title {
    color: #22326b;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}
.status-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #22326b;
    border-radius: 2px;
}
.status-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.status-table thead th {
    background-color: #22326b;
    color: #ffffff;
    padding: 15px 20px;
    font-weight: 700;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.status-table tbody tr {
    border-bottom: 1px solid #eaeaea;
    transition: background-color 0.2s ease;
}
.status-table tbody tr:hover {
    background-color: #f9f9f9;
}
.status-table th[scope="row"] {
    padding: 16px 20px;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}
.status-table td {
    padding: 16px 20px;
    vertical-align: middle;
}
.status-count-cell {
    text-align: center;
    width: 120px;
}
.status-count {
    font-size: 1rem;
    font-weight: 700;
    color: #22326b;
    background-color: #f0f2f8;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    min-width: 70px;
}
.status-btn-cell {
    text-align: right;
    width: 180px;
}
.status-btn {
    display: inline-block;
    background-color: #22326b;
    color: #ffffff !important;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease-in-out;
    border: 1px solid #22326b;
    text-align: center;
}
.status-btn:hover {
    background-color: #71789b;
    border-color: #71789b;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.status-info-box {
    background-color: #f4f6fa;
    border-left: 4px solid #22326b;
    color: #555555;
    padding: 18px 24px;
    border-radius: 4px;
    margin-top: 40px;
    font-size: 0.95rem;
    text-align: left;
}
