* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: #0f172a;
    color: white;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 40px auto;
}

header {
    margin-bottom: 35px;
}

header h1 {
    font-size: 42px;
}

header p {
    color: #94a3b8;
    margin-top: 5px;
}

.stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #1e293b;
    border-radius: 15px;
    padding: 25px;
    width: 250px;
}

.card-title {
    display: block;
    color: #94a3b8;
    margin-bottom: 10px;
}

.number {
    font-size: 38px;
    font-weight: bold;
}

.actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.button {
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 10px;
}

.button:hover {
    background: #1d4ed8;
}

.people {
    background: #1e293b;
    border-radius: 15px;
    padding: 25px;
}

.people h2 {
    margin-bottom: 20px;
}

.people-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.person {
    background: #334155;
    padding: 15px;
    border-radius: 10px;

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

.person button {
    background: #dc2626;
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 7px;
    cursor: pointer;
}

.person button:hover {
    background: #b91c1c;
}

.empty {
    color: #94a3b8;
}
