/* te-notifications-page-build-20260816 */
/* Full-page "View all notifications" — reuses .te-notification-item* rules
   from notifications.css (same visual language as the bell dropdown), just
   without the floating-panel sizing/positioning. */
.te-notifications-page {
    max-width: 640px;
    margin: 0 auto;
    padding: 18px 16px 40px;
}
.te-notifications-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.te-notifications-page-header h1 {
    margin: 0;
    font-size: 22px;
}
.te-notifications-page-header button {
    padding: 6px 12px;
    border: 1px solid #006D5B;
    border-radius: 8px;
    background: #fff;
    color: #006D5B;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.te-notifications-page-header button:hover { background: #e6f3ef; }
.te-notifications-page-filters {
    margin-bottom: 12px;
    padding: 0 0 10px;
    border-bottom: 1px solid #eee;
}
.te-notifications-page-items {
    max-height: none;
    overflow: visible;
    border: 1px solid #eee;
    border-radius: 10px;
}
.te-notifications-page-items .te-notification-item:last-child { border-bottom: 0; }
.te-notifications-page-signed-out {
    padding: 30px 15px;
    color: #555;
    font-size: 14px;
    text-align: center;
}
