/* =========================================
   TOAST NOTIFICATION (Bildirim Kutucukları)
========================================= */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 999999;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    max-width: 400px;
    border-left: 5px solid #333;
    animation: toastSlideIn 0.5s forwards;
}

.toast.hiding {
    animation: toastSlideOut 0.4s forwards;
}

.toast-success { border-left-color: #25D366; }
.toast-success .toast-icon { color: #25D366; }

.toast-error { border-left-color: #e63946; }
.toast-error .toast-icon { color: #e63946; }

.toast-info { border-left-color: #3498db; }
.toast-info .toast-icon { color: #3498db; }

.toast-icon {
    font-size: 28px;
}

.toast-content {
    flex-grow: 1;
}

.toast-content h4 {
    margin: 0 0 5px 0;
    font-size: 17px;
    font-weight: 700;
    color: #111;
}

.toast-content p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.toast-close {
    margin-left: 10px;
    cursor: pointer;
    color: #bbb;
    transition: color 0.2s;
    font-size: 18px;
}

.toast-close:hover {
    color: #333;
}

@keyframes toastSlideIn {
    0% {
        transform: translateX(120%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}
