/* Styling for the container with class "formatter" */
.formatter {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
}

/* Styling for the member data table within the "formatter" container */
.formatter .member-data-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.formatter .member-data-table th,
.formatter .member-data-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.formatter .member-data-table th {
    background-color: #f0f0f0;
}

.formatter .member-data-table img {
    max-width: 50px;
    max-height: 50px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

/* Styling for the "Generate PDF" button within the "formatter" container */
.formatter .generate-pdf {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.formatter .generate-pdf:hover {
    background-color: #0056b3;
}

/* Clearfix for content after the table */
.formatter .clear {
    clear: both;
}
