﻿/* General dialog container styles */
.dialog-container {
    overflow-y: auto; /* Allow vertical scrolling if content overflows */
    max-height: 80vh; /* Ensure the dialog fits the viewport */
    padding: 20px;
}

/* Styling for the report card */
.report-card {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

    .header img {
        width: 70px;
        margin-bottom: 10px;
    }

    .header h1 {
        font-size: 28px;
        margin: 10px 0;
    }

    .header p {
        font-size: 14px;
        margin: 5px 0;
        color: #555;
    }

.student-info, .grades, .attendance {
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
    text-align: center;
}

td {
    text-align: center;
}

.grades th, .attendance th, .grades td, .attendance td {
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .report-card {
        padding: 10px;
    }

    .header h1 {
        font-size: 20px;
    }

    th, td {
        font-size: 12px;
        padding: 5px;
    }
}
