h1 {
    font-size: 28px;
    margin-bottom: 24px;
    color:var(--dark-color);
    text-align: center;
}

.table {
    width: 50%;
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.table thead {
    background-color: var(--primary-color);
    color: white;
}

.table th, .table td {
    padding: 12px 16px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
}

.table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.table tbody tr:hover {
    background-color: var(--primary-light-color);
}

.table td a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
}

.table td a:hover {
    text-decoration: underline;
}

.text-center {
    text-align: center;
    color: #666;
    padding: 20px;
    font-size: 15px;
}
