/* ========================================= */
/* 🔔 FULL PAGE NOTIFICATION STYLES */
/* ========================================= */

.notifications-page {
    background-color: #f4f7f6; /* পেজের ব্যাকগ্রাউন্ড হালকা গ্রে রাখা হয়েছে যাতে কার্ডগুলো ফুটে ওঠে */
    min-height: 100vh;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.notifications-container {
    max-width: 750px; /* পেজের মাঝখানে সুন্দর করে দেখানোর জন্য ম্যাক্স-উইথ */
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* --- Header Section --- */
.notifications-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #ececec;
    background: #fff;
}

.notifications-page-header h2 {
    margin: 0;
    font-size: 22px;
    color: #222;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notifications-page-header h2 i {
    color: #087d5c; /* আপনার থিমের অরিজিনাল কালার */
}

#markAllReadBtn {
    background: transparent;
    border: none;
    color: #087d5c;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

#markAllReadBtn:hover {
    color: #055a42;
    text-decoration: underline;
}

/* --- List & Empty State --- */
.notifications-list {
    background: #fff;
}

.notification-empty {
    padding: 70px 20px;
    text-align: center;
    color: #888;
}

.notification-empty i {
    font-size: 55px;
    color: #ddd;
    margin-bottom: 15px;
}

.notification-empty h3 {
    margin: 0 0 8px 0;
    color: #444;
    font-size: 20px;
}

.notification-empty p {
    margin: 0;
    font-size: 15px;
}

/* --- Notification Cards --- */
.notification-card {
    display: flex;
    gap: 16px;
    padding: 20px 25px;
    border-bottom: 1px solid #f2f2f2;
    text-decoration: none;
    color: #333;
    transition: background-color 0.25s ease;
}

.notification-card:last-child {
    border-bottom: none;
}

.notification-card:hover {
    background: #f8f9fb;
}

/* আনরিড (Unread) নোটিফিকেশনের স্টাইল */
.notification-card.unread {
    background: #eef5ff;
}

.notification-card.unread:hover {
    background: #e4efff;
}

/* --- Card Elements --- */
.notification-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #087d5c;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(8, 125, 92, 0.2);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.notification-message {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 10px;
}

.notification-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notification-time {
    font-size: 12px;
    color: #888;
    font-weight: 500;
}

.notification-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* ========================================= */
/* 📱 MOBILE RESPONSIVE MEDIA QUERY */
/* ========================================= */
@media (max-width: 576px) {
    .notifications-page {
        padding: 15px 10px; /* মোবাইলে সাইডের স্পেস কমানো হলো */
    }

    .notifications-page-header {
        padding: 15px 20px;
        flex-direction: column; /* হেডার এবং বাটন নিচে নিচে চলে আসবে */
        align-items: flex-start;
        gap: 12px;
    }

    .notifications-page-header h2 {
        font-size: 20px;
    }

    .notification-card {
        padding: 16px 15px;
        gap: 12px;
    }

    .notification-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
    }

    .notification-title {
        font-size: 15px;
    }

    .notification-message {
        font-size: 13px;
    }
}