/* CSS styling for sc_meetings.php */

/* General styling for the entire archive */
.meeting-archive-container {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
}

/* Styling for each group of meetings with the same date */
.meeting-date-group {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
}

/* Header for the date group - Adjusted for different viewports */
.meeting-date-header {
    font-weight: bold;
    margin-bottom: 10px;
}

/* Styling for each individual meeting line */
.meeting-line {
    margin-bottom: 10px;
    padding-left: 15px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

/* Styling the board and time fields */
.meeting-board {
    display: inline-block;
    font-weight: bold;
}

.meeting-time,
.meeting-agenda,
.meeting-minutes {
    display: inline-block;
}

/* Font size adjustments based on screen size */

/* Desktop view: Use the website's default font size and set meeting-date-header to 18px */
@media (min-width: 1025px) {
    .meeting-line {
        font-size: inherit; /* Inherit the website's default font size */
    }
    .meeting-date-header {
        font-size: 18px; /* Set font size to 18px on desktop */
    }
}

/* Tablet view: Set the font size to 14px for meeting-line and 16px for meeting-date-header */
@media (min-width: 768px) and (max-width: 1024px) {
    .meeting-line {
        font-size: 14px;
    }
    .meeting-date-header {
        font-size: 16px; /* Set font size to 16px on tablet */
    }
}

/* Mobile view: Set the font size to 14px for meeting-line and 16px for meeting-date-header */
@media (max-width: 767px) {
    .meeting-line {
        font-size: 14px;
    }
    .meeting-date-header {
        font-size: 16px; /* Set font size to 16px on mobile */
    }
}
