.notifications{
    position: fixed;
    top: 20px;
    right: 20px;
    list-style: none;
    z-index: 9999;
}

.toast{
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 250px;
    max-width: 350px;
    animation: slideIn 0.4s ease;
}

.toast.success { border-left: 5px solid #00C897; }
.toast.error { border-left: 5px solid #FF4C4C; }
.toast.warning { border-left: 5px solid #FFC107; }
.toast.info { border-left: 5px solid #3D8BFF; }

.toast .column{
    display: flex;
    align-items: center;
}

.toast .column i{
    font-size: 20px;
    margin-right: 10px;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Mobil uyum */
@media(max-width: 600px){
    .notifications{
        right: 10px;
        left: 10px;
    }
    .toast{
        width: 100%;
        min-width: unset;
    }
}
