/* ==========================================
   SAYFA UYARI SERVİSİ - ALERTIFY OVERRIDE
   ========================================== */

/* Container - Sağ Alt */
.alertify-notifier {
    position: fixed !important;
    z-index: 99999;
    pointer-events: none;
}

.alertify-notifier.ajs-bottom.ajs-right,
.alertify-notifier.ajs-right {
    bottom: 8px !important;
    right: 8px !important;
    top: auto !important;
    left: auto !important;
}

/* Mesaj Kutusu */
.alertify-notifier .ajs-message {
    position: relative !important;
    display: inline-block !important;
    width: auto !important;
    max-width: 280px;
    padding: 0 !important;
    margin: 0 0 6px 0 !important;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    overflow: hidden;
    pointer-events: auto;
    animation: uyariIn 0.2s ease-out;
}

@keyframes uyariIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.alertify-notifier .ajs-message.ajs-removing {
    animation: uyariOut 0.15s ease-in forwards;
}

@keyframes uyariOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(20px); }
}

/* İçerik */
.mox0 {
    display: flex !important;
    align-items: center !important;
    gap: 0px;
    padding: 2px 2px;
    background: #fff;
    width: 275px;
    border: 1px solid #ccc;
    border-radius: 10px;
    height: 60px;
}

.mox1 {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: block;
    align-items: center;
    justify-content: center;
    padding-top: 10px;
}

.mox1 img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mox2 {
    flex: 1;
    min-width: 0;
}

.mox2 > div {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    color: #8f8f8f;
    text-shadow: 0 0 BLACK;
}

