.mc-breadcrumb-select { padding-right: 25px; }

.close-btn {
  background: transparent; border: none; font-size: 16px; cursor: pointer;
  color: #888; position: absolute; top: 10px; right: 10px; padding: 0;
}
.close-btn:hover { color: #f44336; }

.notify-item { padding: 15px; border-bottom: 1px solid #ddd; position: relative; }

.bottom-paginate { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.page-info { margin-bottom: 0; font-size: 14px; color: #666; }
.bottom-paginate .pagination { margin: 0; }
.pagination { position: relative; z-index: 1; } /* keep under header */

html[dir="rtl"] .close-btn { margin-right: 95%; }
html[dir="rtl"] .form-select { background-position: right 95% center !important; }
html[dir="ltr"] .form-select { background-position: left 95% center !important; }
#notificationContainer {
    position: fixed;
    top: 20px;
    right: 20px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 12px;

    max-width: 380px;
    width: calc(100% - 24px);
}

html[dir="rtl"] #notificationContainer {
    right: auto;
    left: 20px;
}

.toast {
    background: transparent !important;

    border: 0 !important;

    box-shadow: none !important;

    opacity: 1 !important;
}

.toast-card {
    padding: 14px 16px;

    background: rgba(255, 255, 255, .96);

    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .14);
}

.toast-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;
}

.toast-texts {
    flex: 1;
}

.toast-title {
    font-size: 16px;
    font-weight: 700;
}

.toast-body-custom {
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 576px) {
    #notificationContainer {
        top: 12px;
        right: 12px;
        left: 12px;

        width: auto;
    }

    html[dir="rtl"] #notificationContainer {
        right: 12px;
        left: 12px;
    }
}

/* =========================================
   Notifications Empty State
========================================= */

.notifications-empty-state {
    max-width: 680px;
    margin: 0 auto;
    padding: 70px 30px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #eef0f4;
    border-radius: 18px;
}

.notifications-empty-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #fff7e6;

    display: flex;
    align-items: center;
    justify-content: center;
}

.notifications-empty-icon .ui-icon {
    width: 38px;
    height: 38px;
}

.notifications-empty-state h3 {
    margin: 0 0 12px;
    font-size: 24px;
    font-weight: 700;
    color: #303044;
}

.notifications-empty-state p {
    max-width: 480px;
    margin: 0 auto 28px;
    color: #77798b;
    font-size: 15px;
    line-height: 1.8;
}

.notifications-empty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.notifications-empty-btn .ui-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 575px) {
    .notifications-empty-state {
        padding: 50px 20px;
        border-radius: 14px;
    }

    .notifications-empty-icon {
        width: 72px;
        height: 72px;
    }

    .notifications-empty-state h3 {
        font-size: 21px;
    }
}