/* =========================================================
   TITLE: SISTEM FLASH MODAL ANA KAPSAYICI
   AÇIKLAMA: Flash modal bildirimi 100vh içinde yatay ve dikey merkezler.
   ========================================================= */
#SistemFlashModal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   TITLE: SISTEM FLASH MODAL KUTU
   AÇIKLAMA: Başarı/hata bildirimi için küçük, merkezde duran modal kutusu.
   ========================================================= */
#SistemFlashKutu {
    position: relative;
    width: min(86vw, 315px);
    min-height: 64px;
    max-width: 315px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(207, 232, 220, 0.95);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px 16px 21px;
    text-align: center;
}

/* =========================================================
   TITLE: SISTEM FLASH MODAL DURUM RENKLERI
   AÇIKLAMA: Başarı ve hata durumları için modal renkleri.
   ========================================================= */
#SistemFlashModal[data-flash-tip="basari"] #SistemFlashKutu {
    border-color: #bbf7d0;
    color: #166534;
}

#SistemFlashModal[data-flash-tip="hata"] #SistemFlashKutu {
    border-color: #fecdd3;
    color: #9f1239;
}

/* =========================================================
   TITLE: SISTEM FLASH MODAL KAPAT BUTONU
   AÇIKLAMA: Modal sağ üst kapatma butonu.
   ========================================================= */
#SistemFlashKapat {
    position: absolute;
    top: 7px;
    right: 9px;
    width: 23px;
    height: 23px;
    border: 0;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    cursor: pointer;
    font-size: 15px;
    line-height: 21px;
}

/* =========================================================
   TITLE: SISTEM FLASH MODAL MESAJ
   AÇIKLAMA: Modal mesaj yazısı ve link görünümü.
   ========================================================= */
#SistemFlashMesaj {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
}

#SistemFlashMesaj a {
    color: inherit;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 800;
    text-decoration: underline;
    overflow-wrap: anywhere;
    word-break: break-word;
}
