.admin-section{
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.admin-section-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 4rem;
}

.admin-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border-radius: var(--Radius-medium);
    padding: 2rem 2rem;
    background-color: var(--Color-background-secondary);
    box-shadow: var(--Box-shadow);
}

.admin-card-img{
    width: 8rem;
}

.admin-nav{
    display: flex;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.admin-table{
    width: 100%;
    background-color: var(--Color-background-secondary);
    border-collapse: collapse;
    border-radius: var(--Radius-medium);
    overflow: hidden;
    box-shadow: var(--Box-shadow);
    font-family: var(--Font-text), sans-serif;
}

.admin-table thead {
    background-color: var(--Color-background-tertiary);
    color: var(--Color-light);
    text-align: left;
    font-weight: 600;
    font-size: var(--Text-base);
}

.admin-table th,
.admin-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--Color-separator);
    color: var(--Color-light)
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table tbody tr:hover {
    background-color: var(--Color-separator);
}

.admin-table td {
    vertical-align: middle;
}

.admin-table td a,
.admin-table td button {
    display: inline-block;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    font-size: var(--Text-base);
    border-radius: var(--Radius-medium);
    text-align: center;
    cursor: pointer;
}

.admin-table th.actions,
.admin-table td.actions {
    white-space: nowrap;
    width: 12.5rem;
}

.admin-table td.actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
    white-space: nowrap;
}

