/* ===============================
   NOTIFICATION PAGE – GIGMEXHUB
   =============================== */

.notif-wrapper {
    max-width: 720px;
    margin: 90px auto 40px;
    padding: 0 16px;
}

/* Page title */
.notif-wrapper h3 {
    font-weight: 600;
    margin-bottom: 18px;
    color: #0f172a;
}

.notification-admin-input {
    font-size: 16px; /* Prevent zoom on mobile */
}
/* -------------------------------
   Tabs
-------------------------------- */
.notif-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.notif-tabs button {
    flex: 1;
    padding: 10px 0;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    background: #eef2f7;
    color: #475569;
    transition: all 0.25s ease;
}

.notif-tabs button.active {
    background: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.notif-tabs button:hover {
    background: #dbeafe;
}

/* -------------------------------
   Notification Card
-------------------------------- */
.notif-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    position: relative;
}

.notif-item.unread {
    background: #f0f7ff;
    border-left: 4px solid #2563eb;
}

.notif-item strong {
    font-size: 15px;
    color: #0f172a;
}

.notif-item p {
    margin: 6px 0 10px;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}

.notif-time {
    font-size: 12px;
    color: #64748b;
}

/* Mark as read link */
.notif-item a {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #2563eb;
    font-weight: 500;
    cursor: pointer;
}

.notif-item a:hover {
    text-decoration: underline;
}

/* -------------------------------
   Load More Button
-------------------------------- */
#loadMoreBtn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    background: #f1f5f9;
    color: #1e293b;
    transition: all 0.25s ease;
}

#loadMoreBtn:hover {
    background: #e2e8f0;
}

/* -------------------------------
   Mobile Refinements
-------------------------------- */
@media (max-width: 576px) {
    .notif-wrapper {
        margin-top: 80px;
    }

    .notif-item {
        padding: 14px;
    }

    .notif-item strong {
        font-size: 14px;
    }

    .notif-item p {
        font-size: 13px;
    }
}

/* -------------------------------
   Empty State
-------------------------------- */
.notif-empty {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.notif-empty-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.notif-empty-text {
    font-size: 14px;
}
.mark-all-btn {
    border: none;
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.mark-all-btn:hover {
    background: #1e40af;
}

/* Live incoming notification */
.notif-item.live-new {
    animation: slideIn 0.35s ease-out;
    background: #eff6ff;
    border-left: 4px solid #2563eb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
