* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #1f2937;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 32px 20px 48px;
}

.hero, .panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: #e8eefc;
    color: #21409a;
    font-weight: 700;
    margin-bottom: 14px;
}

h1 {
    margin: 0 0 12px;
    font-size: 38px;
}

h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.lead {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.card {
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.15s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.card p {
    margin: 0;
    line-height: 1.5;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.back {
    text-decoration: none;
    font-weight: 700;
    color: #21409a;
}

.small-gap {
    margin-bottom: 18px;
}

.table-wrap {
    overflow-x: auto;
    margin-top: 18px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 14px 16px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.data-table th {
    background: #f1f5f9;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.data-table tr:hover td {
    background: #f8fbff;
}

.status-pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e8f7ec;
    color: #1e7a35;
    font-weight: 700;
    font-size: 14px;
}

.urgent-pill {
    background: #fdeaea;
    color: #b42318;
}
