/* Styles for dashboard page */
.stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.stat {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 1rem;
    border-radius: 4px;
    flex: 1;
    text-align: center;
}
.recent {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 1rem;
}
.recent ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.recent li {
    padding: 0;
    border-bottom: 1px solid #f1f1f1;
}

.recent li:last-child {
    border-bottom: 0;
}

.recent a {
    display: grid;
    grid-template-columns: 6rem 1fr;
    gap: 0.35rem 0.75rem;
    padding: 0.75rem 0;
    color: inherit;
    text-decoration: none;
}

.recent a:hover strong {
    color: #005fcc;
}

.activity-type {
    grid-row: span 2;
    align-self: start;
    width: fit-content;
    min-width: 4.6rem;
    padding: 0.18rem 0.45rem;
    border: 1px solid #d8dee9;
    border-radius: 999px;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
}

.recent strong {
    display: block;
}

.recent small {
    color: #5f6b7a;
}
