/* ===========================================================
   Atak Domain - Toastr (modern UI)
   Konum: sağ alt (toast-bottom-right) - sepeti engellemez
   =========================================================== */

#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
}

    #toast-container * {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

/* --- Konum sınıfları --- */
.toast-top-left {
    top: 16px;
    left: 16px;
}

.toast-top-right {
    top: 16px;
    right: 16px;
}

.toast-bottom-right {
    right: 16px;
    bottom: 16px;
}

.toast-bottom-left {
    bottom: 16px;
    left: 16px;
}

.toast-top-center,
.toast-top-full-width {
    top: 16px;
    right: 0;
    width: 100%;
}

.toast-bottom-center,
.toast-bottom-full-width {
    bottom: 16px;
    right: 0;
    width: 100%;
}

/* --- Kart --- */
#toast-container > div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    width: 360px;
    max-width: calc(100vw - 32px);
    margin: 0 0 12px;
    padding: 16px 44px 16px 58px;
    border-radius: 14px;
    border-left: 4px solid transparent;
    background-color: #fff;
    background-position: 18px center;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    color: #1a1850;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 10px 30px -5px rgba(16, 15, 59, 0.25), 0 2px 6px rgba(16, 15, 59, 0.08);
    opacity: 1;
}

#toast-container.toast-bottom-center > div,
#toast-container.toast-top-center > div {
    margin-left: auto;
    margin-right: auto;
}

#toast-container.toast-bottom-full-width > div,
#toast-container.toast-top-full-width > div {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}

#toast-container > :hover {
    box-shadow: 0 14px 36px -5px rgba(16, 15, 59, 0.32), 0 3px 8px rgba(16, 15, 59, 0.1);
    cursor: pointer;
}

/* --- Başlık & mesaj --- */
.toast-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 1.35;
    margin-bottom: 2px;
}

.toast-message {
    font-weight: 400;
    font-size: 13px;
    line-height: 1.45;
    color: #5b5b6b;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

    .toast-message a,
    .toast-message label {
        color: #343072;
        font-weight: 500;
    }

        .toast-message a:hover {
            color: #1a1850;
            text-decoration: underline;
        }

/* --- Kapat butonu --- */
.toast-close-button {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #b4b4c2;
    opacity: 1;
    transition: color .2s ease;
}

button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
}

.toast-close-button:focus,
.toast-close-button:hover {
    color: #1a1850;
    text-decoration: none;
    cursor: pointer;
    outline: none;
}

/* --- Tipler: sol şerit + ikon --- */
#toast-container > .toast-success {
    border-left-color: #12b385;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%2312b385'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.3-4-4 1.41-1.41L10.8 13.48l5.59-5.59L17.8 9.3z'/%3E%3C/svg%3E");
}

#toast-container > .toast-error {
    border-left-color: #de2e24;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23de2e24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm3.54 12.12-1.42 1.42L12 13.41l-2.12 2.13-1.42-1.42L10.59 12 8.46 9.88l1.42-1.42L12 10.59l2.12-2.13 1.42 1.42L13.41 12z'/%3E%3C/svg%3E");
}

#toast-container > .toast-info {
    border-left-color: #343072;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23343072'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 15h-2v-6h2zm0-8h-2V7h2z'/%3E%3C/svg%3E");
}

#toast-container > .toast-warning {
    border-left-color: #eb7b30;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23eb7b30'%3E%3Cpath d='M12 2 1 21h22L12 2zm1 15h-2v-2h2zm0-4h-2V9h2z'/%3E%3C/svg%3E");
}

/* --- İlerleme çubuğu --- */
.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: #343072;
    opacity: .25;
}

#toast-container > .toast-success .toast-progress {
    background-color: #12b385;
}

#toast-container > .toast-error .toast-progress {
    background-color: #de2e24;
}

#toast-container > .toast-warning .toast-progress {
    background-color: #eb7b30;
}

/* --- Mobil --- */
@media all and (max-width: 480px) {
    #toast-container > div {
        width: calc(100vw - 32px);
        padding: 14px 40px 14px 54px;
        background-position: 16px center;
    }
}
