#notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: auto;
    max-width: 90vw; /* mobil için */
}

/* Genel notification kutusu */
.notification {
    min-width: 280px;
    max-width: 380px;
    padding: 14px 16px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    background: #003366; /* sabit kurumsal renk */
    word-wrap: break-word;
    word-break: break-word; /* mobilde taşma engeli */
    overflow: hidden;
}

/* Animasyon */
.notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* Accent bar */
.notification::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;   /* şerit kalınlığı */
    height: 100%;
}

/* Tür bazlı accent renkleri */
.notification.success::before { background: #38a169; } /* yeşil */
.notification.error::before   { background: #e53e3e; } /* kırmızı */
.notification.warning::before { background: #dd6b20; } /* turuncu */
.notification.info::before    { background: #3182ce; } /* mavi */

/* Yazı */
.notification p {
    margin: 0;
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Close button */
.notification .close-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.notification .close-btn:hover {
    opacity: 1;
}

/* Logo */
.notification .logo {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Mobil optimizasyon */
@media (max-width: 480px) {
    #notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        align-items: flex-end;
    }

    .notification {
        min-width: auto;
        max-width: 100%;
        font-size: 0.85rem;
        padding: 12px 14px;
    }

    .notification p {
        font-size: 0.85rem;
    }
}
