/* ===== Mobile styles for Notifications page ===== */

@media (max-width: 768px) {
    .notifications-container {
        margin-top: 60px;
        padding: 0 10px;
    }

    .page-title {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .notifications-container h1 {
        font-size: 24px;
        text-align: center;
    }

    .notifications-container h2 {
        font-size: 20px;
        text-align: center;
    }

    #notifications-list {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .notification-card {
        padding: 10px;
        margin-bottom: 10px;
    }

    .notification-header {
        align-items: flex-start;
        margin-bottom: 5px;
    }

    .notification-header h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .notification-header a {
        font-size: 14px;
    }

    .notification-body p {
        font-size: 16px;
        line-height: 1.4;
    }

    .view-link {
        font-size: 14px;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .notifications-container h1 {
        font-size: 20px;
    }

    .notifications-container h2 {
        font-size: 18px;
    }

    .notification-header h3 {
        font-size: 14px;
    }

    .notification-header a {
        font-size: 12px;
    }

    .notification-body p {
        font-size: 14px;
    }

    .view-link {
        font-size: 12px;
    }
}