/* Wrapper layout */
.tests-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

/* Section title */
.section-title {
    text-align: center;
    font-size: 34px;
    color: #4c4b4b;
    margin-top: 20px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-weight: bold;
}

/* Modern table */
.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.12);
}

/* Table header */
.modern-table thead {
    background: #4a6cf7;
    color: white;
    font-size: 17px;
}

.modern-table th {
    padding: 16px 20px;
    font-weight: 600;
    text-align: left;
}

/* Table body */
.modern-table td {
    padding: 12px 20px;
    color: #222;
    font-size: 14px;
    transition: 0.2s ease;
}



/* Hover effect */
.modern-table tbody tr:hover {
    background: #e9eeff;
    transform: translateY(-2px);
}

/* Center request column */
.modern-table td:last-child,
.modern-table th:last-child {
    text-align: center;
}

/* Request button */
.request-btn {
    display: inline-block;
    background: #4a6cf7;
    color: white;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.request-btn:hover {
    background: #2f4de0;
    transform: translateY(-2px);
}