/* ================== Notification Styles ================== */
.notification-wrapper {
    position: relative;
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Bell Button */
.notification-bell {
    position: relative;
    background: #E5E7EB;
    padding: 8px;
    border-radius: 40%;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}
.notification-bell:hover {
    background: #D63031;
}
.notification-bell i {
    font-size: 18px;
    color: #1c1c1e;
}

/* Badge */
.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    background: #ff3b30;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    padding: 2px 6px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

/* Dropdown */
.notification-dropdown {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 10px;
    width: 320px;
    max-height: 420px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}



/* List */
.notification-list {
    flex: 1;
    overflow-y: auto;
    max-height: 340px;
    padding: 8px 0;
    background: #fff;
}

/* Empty state / placeholder text */
.notification-list p {
    padding: 12px 16px;
    color: #000;              /* ✅ Changed to black */
    text-align: justify;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Individual Notification Item */
.notification-list li {
    padding: 12px 16px;
    font-size: 14px;
    color: #000;              /* ✅ Changed to black */
    text-align: justify;
    line-height: 1.5;
    border-bottom: 1px solid #f2f2f7;
}


/* Footer (always shown at bottom) */
.notification-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid #e5e5ea;
    background: #f9f9f9;
}
.notification-footer a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #007aff;
}
