/**
 * Member Roster Public Styles  Parent Portal
 */

/* ========================================
   BASE / CONTAINER
   ======================================== */
.mr-parent-portal {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0 auto;
}

.mr-portal-login-msg {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    font-size: 16px;
}

/* ========================================
   TERM SELECTOR
   ======================================== */
.mr-portal-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 24px;
}

.mr-portal-controls label {
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

#mr-portal-term-select {
    flex: 1;
    max-width: none;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #111827;
}

#mr-portal-term-select:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* ========================================
   SINGER TILES GRID
   ======================================== */
.mr-portal-singers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

/* ========================================
   SINGER TILE (matches admin roster aesthetic)
   ======================================== */
.mr-portal-tile {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 18px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    gap: 16px;
}

.mr-portal-tile:hover {
    border-color: #4f46e5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}

/* Tile Photo */
.mr-tile-photo {
    flex-shrink: 0;
}

.mr-tile-photo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.mr-tile-photo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f3f4f6;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: #9ca3af;
}

/* Tile Info */
.mr-tile-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mr-tile-name {
    font-weight: 600;
    color: #111827;
    font-size: 16px;
    margin-bottom: 4px;
}

.mr-tile-ensemble {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.mr-tile-ensemble.primary {
    font-weight: bold;
}

.mr-tile-ensemble.contemporary {
	font-weight:bold;
}

.mr-tile-absences {
    color: #6b7280;
    font-weight: 400;
}

.mr-tile-manage-btn {
    margin-top: 8px;
    padding: 6px 14px;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    align-self: flex-start;
}

.mr-tile-manage-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.3);
}

/* ========================================
   BACK BUTTON
   ======================================== */
.mr-portal-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-bottom: 20px;
}

.mr-portal-back-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.mr-back-arrow {
    font-size: 18px;
    line-height: 1;
}

/* ========================================
   DETAIL VIEW
   ======================================== */
.mr-portal-detail-content {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 30px;
}

/* Detail Header (photo + basic info) */
.mr-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 0;
}

.mr-detail-photo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mr-detail-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    color: #6c757d;
    border: 3px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mr-detail-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mr-detail-name-row {
    display: flex;
    align-items: center;
}

.mr-detail-name-row + .mr-detail-name-row {
    margin-top: 0;
}

.mr-detail-term-label {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-top: 6px;
}

.mr-detail-helper-text {
    font-size: 16px;
    color: #9ca3af;
    margin-top: 6px;
    line-height: 1.5;
}

.mr-detail-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0 0 0;
}

.mr-detail-spacer-sm {
    height: 25px;
}

.mr-name-field {
    display: inline-flex;
    align-items: center;
}

.mr-name-display {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    transition: background 0.15s ease;
}

.mr-name-display:hover {
    background: #f3f4f6;
}

.mr-name-value {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
}

.mr-name-display .mr-edit-icon {
    font-size: 14px;
    opacity: 0;
}

.mr-name-display:hover .mr-edit-icon {
    opacity: 1;
}

.mr-name-edit {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mr-name-input {
    width: 150px !important;
    text-align: left !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    padding: 4px 8px !important;
}

/* ========================================
   DETAIL SECTIONS
   ======================================== */
.mr-detail-section {
    margin-bottom: 28px;
}

.mr-detail-section-no-header {
    margin-bottom: 0;
}

.mr-detail-spacer {
    height: 50px;
}

.mr-detail-section h3 {
    margin: 0 0 16px 0;
    color: #111827;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #4f46e5;
    padding-bottom: 8px;
}

/* Ensemble/Attendance Cards */
.mr-detail-ensemble-card {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 6px;
    border-left: 4px solid #4f46e5;
    margin-bottom: 12px;
}

.mr-detail-ensemble-card h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    border-bottom: none;
    padding-bottom: 0;
    color: #374151;
}

.mr-detail-attendance-info p {
    margin: 4px 0;
    font-size: 16px;
    color: #4b5563;
    font-family: Helvetica, Arial, sans-serif;
}

/* Manage Attendance Button */
.mr-detail-manage-attendance {
    margin-bottom: 28px;
}

.mr-manage-attendance-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}

.mr-manage-attendance-btn:hover {
    background: #4338ca;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    transform: translateY(-1px);
}

/* Detail fields list (singer details, parent info)  uses .mr-detail-fields above */

/* ========================================
   EDITABLE FIELDS
   ======================================== */
.mr-detail-fields {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mr-editable-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    min-height: 44px;
}

.mr-editable-field:last-child {
    border-bottom: none;
}

.mr-editable-field label {
    font-weight: 600;
    font-size: 16px;
    color: #374151;
    white-space: nowrap;
    margin: 0;
    flex-shrink: 0;
}

.mr-editable-display {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
    margin-left: auto;
    text-align: right;
}

.mr-editable-display:hover {
    background: #f3f4f6;
}

.mr-editable-value {
    color: #111827;
    font-size: 16px;
    border-bottom: 1px dotted #9ca3af;
}

.mr-empty-value {
    color: #9ca3af;
    font-style: italic;
}

.mr-edit-icon {
    font-size: 14px;
    color: #9ca3af;
    opacity: 0;
    transition: opacity 0.15s ease;
    flex-shrink: 0;
}

.mr-editable-display:hover .mr-edit-icon {
    opacity: 1;
}

.mr-editable-edit {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.mr-editable-input {
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    font-family: Helvetica, Arial, sans-serif;
    color: #111827;
    background: #fff;
    min-width: 0;
    width: 220px;
    text-align: right;
}

.mr-editable-input:not([type="checkbox"]) {
    -webkit-appearance: none;
}

.mr-editable-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.mr-editable-input[type="date"] {
    width: 180px;
}

select.mr-editable-input {
    width: 220px;
    text-align: right;
    font-size: 16px;
    font-family: Helvetica, Arial, sans-serif;
}

.mr-edit-done-btn {
    padding: 4px 8px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.mr-edit-done-btn:hover {
    background: #059669;
}

.mr-edit-cancel-btn {
    padding: 4px 8px;
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    line-height: 1;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.mr-edit-cancel-btn:hover {
    background: #dc2626;
}

/* ========================================
   CONSENT FIELDS
   ======================================== */
.mr-consent-field {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mr-consent-field:last-child {
    border-bottom: none;
}

.mr-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400 !important;
    font-size: 13px !important;
    color: #6b7280 !important;
    line-height: 1.5;
}

.mr-consent-checkbox {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    padding: 0 !important;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #4f46e5;
    border: 1px solid #9ca3af !important;
    border-radius: 3px !important;
    text-align: left !important;
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
}

.mr-consent-text {
    flex: 1;
}

.mr-consent-text a {
    color: #4f46e5;
    text-decoration: underline;
}

.mr-consent-text a:hover {
    color: #4338ca;
}

/* ========================================
   SAVE BAR
   ======================================== */
.mr-detail-save-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.mr-portal-save-btn {
    padding: 10px 28px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
}

.mr-portal-save-btn:hover {
    background: #059669;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.mr-portal-save-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.mr-portal-save-status {
    font-size: 14px;
    color: #6b7280;
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.mr-portal-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-width: 400px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.mr-portal-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.mr-portal-toast-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.mr-portal-toast-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.mr-portal-toast-info {
    background: #e0e7ff;
    color: #3730a3;
    border: 1px solid #c7d2fe;
}

/* ========================================
   LOADING / EMPTY / ERROR STATES
   ======================================== */
.mr-portal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 15px;
}

.mr-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #e5e7eb;
    border-top-color: #4f46e5;
    border-radius: 50%;
    animation: mr-spin 0.8s linear infinite;
}

@keyframes mr-spin {
    to { transform: rotate(360deg); }
}

.mr-portal-empty {
    padding-left: 20px;
    color: #6b7280;
}

.mr-portal-empty p {
    font-size: 16px;
}

.mr-portal-error {
    text-align: center;
    padding: 30px 20px;
    color: #991b1b;
    background: #fee2e2;
    border-radius: 8px;
    border: 1px solid #fecaca;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .mr-portal-singers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mr-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .mr-detail-header-info {
        align-items: center;
    }

    .mr-detail-name-row {
        justify-content: center;
    }

    .mr-detail-term-label {
        text-align: center;
    }

    .mr-detail-helper-text {
        text-align: center;
    }

    .mr-portal-controls {
        flex-direction: column;
        align-items: stretch;
    }

    #mr-portal-term-select {
        max-width: none;
    }

    .mr-portal-detail-content {
        padding: 20px;
    }

    .mr-editable-input {
        width: 160px;
    }
}

@media (max-width: 480px) {
    .mr-portal-tile {
        padding: 14px;
        gap: 12px;
    }

    .mr-tile-photo img,
    .mr-tile-photo-placeholder {
        width: 56px;
        height: 56px;
    }

    .mr-tile-name {
        font-size: 15px;
    }

    .mr-detail-photo img,
    .mr-detail-photo-placeholder {
        width: 120px;
        height: 120px;
        font-size: 36px;
    }

    .mr-portal-detail-content {
        padding: 16px;
    }

    .mr-editable-input {
        width: 140px;
    }

    select.mr-editable-input {
        width: 160px;
    }

    .mr-name-input {
        width: 120px !important;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
.mr-portal-tile:focus,
.mr-portal-back-btn:focus,
.mr-tile-manage-btn:focus,
.mr-manage-attendance-btn:focus,
.mr-portal-save-btn:focus {
    outline: 2px solid #4f46e5;
    outline-offset: 2px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   ATTENDANCE MANAGER
   ======================================== */

/* Header */
.mr-att-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.mr-att-photo img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.mr-att-photo-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #94a3b8;
}

.mr-att-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.mr-att-term {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin: 6px 0 0 0;
    font-family: Helvetica, Arial, sans-serif;
}

/* Back button override */
.mr-att-back-btn {
    margin-bottom: 20px;
}

/* Instructions box */
.mr-att-instructions {
    margin-bottom: 16px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.mr-att-instructions p {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Table */
.mr-att-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

/* Table header */
.mr-att-table thead th {
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    color: #475569;
    background: #f8f9fa;
    border-bottom: 2px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mr-att-th-date {
    text-align: left !important;
    width: 38%;
}

.mr-att-th-ensemble {
    width: 31%;
}

/* Table rows */
.mr-att-row td {
    padding: 10px 16px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.mr-att-row:last-child td {
    border-bottom: none;
}

.mr-att-row:nth-child(even) {
    background: #fafafa;
}

.mr-att-row-future {
    opacity: 0.65;
}

.mr-att-row-today {
    background: #eff6ff !important;
}

/* Date cell */
.mr-att-date-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mr-att-date-text {
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.mr-att-upcoming-badge {
    font-size: 10px;
    font-weight: 500;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mr-att-today-badge {
    font-size: 10px;
    font-weight: 600;
    color: #1d4ed8;
    background: #dbeafe;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Status cell */
.mr-att-status-cell {
    text-align: center;
}

.mr-att-no-rehearsal {
    color: #cbd5e1;
    font-size: 16px;
}

/* ========================================
   STATUS PILLS
   ======================================== */
.mr-att-pill {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
    transition: all 0.15s ease;
    user-select: none;
}

.mr-att-pill-present {
    background: #5dcd8a;
}

.mr-att-pill-excused {
    background: #EE722E;
}

.mr-att-pill-absent {
    background: #BF3D36;
}

/* Future "present" = gray */
.mr-att-pill-future-present {
    background: #d1d5db !important;
}

/* Clickable pills */
.mr-att-pill-clickable {
    cursor: pointer;
}

.mr-att-pill-clickable:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.mr-att-pill-clickable:active {
    transform: scale(0.98);
}

/* Past pills (non-interactive) */
.mr-att-pill-past {
    cursor: default;
}

/* ========================================
   TABLE FOOTER
   ======================================== */
.mr-att-footer-row {
    background: #f8f9fa;
    border-top: 2px solid #e5e7eb;
}

.mr-att-footer-row td {
    padding: 12px 16px;
    border-bottom: none;
}

.mr-att-footer-label {
    font-weight: 700;
    font-size: 13px;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mr-att-counter {
    font-weight: 700;
    font-size: 14px;
}

.mr-att-counter-ok {
    color: #166534;
}

.mr-att-counter-maxed {
    color: #92400e;
}

.mr-att-counter-exceeded {
    color: #991b1b;
}

/* ========================================
   WARNINGS
   ======================================== */
.mr-att-warnings {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.mr-att-warnings:empty {
    display: none;
}

.mr-att-warning {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    background: #BF3D36;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
}

.mr-att-warning-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.mr-att-warning-sub {
    font-size: 12px;
    opacity: 0.9;
}

/* ========================================
   POLICY / CONTACT SECTION
   ======================================== */
.mr-att-policy {
    margin-top: 28px;
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.mr-att-policy p {
    font-size: 13px;
    color: #475569;
    line-height: 1.65;
    margin: 0 0 12px 0;
}

.mr-att-policy p:last-of-type {
    margin-bottom: 16px;
}

.mr-att-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #4f46e5;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.15s ease;
}

.mr-att-email-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mr-att-contact-btn:hover {
    background: #4338ca;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ========================================
   RESPONSIVE - ATTENDANCE MANAGER
   ======================================== */
@media (max-width: 768px) {
    .mr-att-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .mr-att-header-info {
        text-align: center;
    }

    .mr-att-table {
        font-size: 13px;
    }

    .mr-att-table thead th {
        padding: 10px 8px;
        font-size: 12px;
    }

    .mr-att-row td {
        padding: 8px;
    }

    .mr-att-pill {
        padding: 3px 10px;
        font-size: 11px;
    }

    .mr-att-date-text {
        font-size: 13px;
    }

    .mr-att-date-cell {
        flex-wrap: wrap;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .mr-att-title {
        font-size: 17px;
    }

    .mr-att-table {
        font-size: 12px;
    }

    .mr-att-pill {
        padding: 2px 8px;
        font-size: 10px;
    }

    .mr-att-policy {
        padding: 16px;
    }
}