/* =========================
   TABLE STYLE 1
   Clean academic / report
   ========================= */
.table-1 {
    width: 100%;
    border-collapse: collapse;
    font-family: "Times New Roman", serif;
    font-size: 16px;
    background-color: #ffffff;
}

.table-1 th,
.table-1 td {
    border: 1px solid #444;
    padding: 8px 10px;
    text-align: left;
}

.table-1 th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.table-1 tr:nth-child(even) {
    background-color: #fafafa;
}

.table-1 tr:hover {
    background-color: #eaeaea;
}

/* =========================
   TABLE STYLE 2
   Modern dashboard style
   ========================= */
.table-2 {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: Arial, sans-serif;
    font-size: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.table-2 th,
.table-2 td {
    padding: 10px 12px;
    text-align: left;
}

.table-2 th {
    background-color: #0c6efd;
    color: #ffffff;
    font-weight: 600;
}

.table-2 td {
    border-bottom: 1px solid #e0e0e0;
}

.table-2 tr:last-child td {
    border-bottom: none;
}

.table-2 tr:hover {
    background-color: #f5f9ff;
}

/* =========================
   TABLE STYLE 3
   Minimal exam / print
   ========================= */
.table-3 {
    width: 100%;
    border-collapse: collapse;
    font-family: "Times New Roman", serif;
    font-size: 16px;
    background-color: #ffffff;
}

.table-3 th,
.table-3 td {
    padding: 6px 8px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.table-3 th {
    font-weight: bold;
    border-bottom: 2px solid #000;
}

.table-3 tr:last-child td {
    border-bottom: 2px solid #000;
}
