﻿/* student.css */

/* Container to limit table width */
.student-table-wrapper {
    max-width: 800px;
    margin-bottom: 1rem;
    overflow-x: auto;
}

/* Table styling */
.student-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.875rem;
    background-color: #ffffff;
    border: 1px solid #ccc;
}

    /* Header row */
    .student-table th {
        background-color: #f8f9fa;
        font-weight: 600;
        padding: 0.6rem;
        border: 1px solid #dee2e6;
        text-align: left;
    }

    /* Data rows */
    .student-table td {
        padding: 0.6rem;
        border: 1px solid #dee2e6;
        vertical-align: middle;
    }

        /* Button spacing inside action column */
        .student-table td button {
            margin-right: 0.4rem;
        }

/* Responsive tweaks (optional) */
@media (max-width: 768px) {
    .student-table-wrapper {
        max-width: 100%;
    }

    .student-table th,
    .student-table td {
        font-size: 0.8rem;
        padding: 0.4rem;
    }

        .student-table td button {
            margin-bottom: 0.2rem;
        }
}
