* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f5f5f5;
    color: #333333;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

.topbar {
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 32px;

    background: #ffffff;

    border-bottom: 1px solid #e5e5e5;
}

.brand {
    font-size: 22px;
    font-weight: 700;
}

.brand span {
    margin-left: 8px;

    font-size: 15px;
    font-weight: 500;

    color: #666666;
}

.environment {
    padding: 6px 10px;

    background: #eeeeee;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;
}

.container {
    max-width: 1500px;

    margin: 0 auto;

    padding: 32px;
}

.page-header {
    margin-bottom: 24px;
}

.page-header h1 {
    margin: 0 0 6px 0;

    font-size: 28px;
}

.page-header p {
    margin: 0;

    color: #777777;
}

.cards {
    display: grid;

    grid-template-columns:
        repeat(5, minmax(160px, 1fr));

    gap: 16px;

    margin-bottom: 24px;
}

.card {
    min-height: 118px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

.card-label {
    font-size: 14px;

    color: #777777;
}

.card strong {
    font-size: 30px;
    font-weight: 600;
}

.panel {
    background: #ffffff;

    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

.panel-header {
    padding: 22px 24px;

    border-bottom: 1px solid #eeeeee;
}

.panel-header h2 {
    margin: 0 0 5px 0;

    font-size: 18px;
}

.panel-header p {
    margin: 0;

    color: #777777;

    font-size: 14px;
}

.empty-state {
    min-height: 340px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;
}

.empty-icon {
    width: 58px;
    height: 58px;

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

    margin-bottom: 16px;

    border-radius: 50%;

    background: #fff4c2;

    font-size: 26px;
    font-weight: 700;
}

.empty-state h3 {
    margin: 0 0 8px 0;
}

.empty-state p {
    max-width: 500px;

    margin: 0;

    line-height: 1.5;

    color: #777777;
}

@media (max-width: 1100px) {

    .cards {
        grid-template-columns:
            repeat(2, minmax(160px, 1fr));
    }

}

@media (max-width: 650px) {

    .container {
        padding: 20px;
    }

    .topbar {
        padding: 0 20px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.account {
    padding: 9px 14px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.total {
    color: #777777;
    font-size: 14px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

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

thead th {
    padding: 14px 18px;
    text-align: left;
    background: #fafafa;
    border-bottom: 1px solid #eeeeee;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
}

tbody tr:hover {
    background: #fafafa;
}

.badge {
    display: inline-block;
    padding: 5px 9px;
    border-radius: 6px;
    background: #eeeeee;
    font-size: 12px;
    font-weight: 600;
}

.badge.candidate {
    background: #fff4c2;
}

.badge.started {
    background: #e6f4ea;
}

.positive {
    font-weight: 600;
}

.negative {
    font-weight: 600;
}
