/* ===========================
   Notification (Notify)
   =========================== */

#notify-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 9999;
    pointer-events: none;
}

.notify {
    min-width: 260px;
    max-width: 360px;
    background: radial-gradient(circle at top left, rgba(15,23,42,0.98), rgba(15,23,42,0.98));
    border-radius: 0.75rem;
    border: 1px solid rgba(148,163,184,0.25);
    padding: 0.6rem 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    box-shadow:
        0 0 0 1px rgba(15,23,42,0.8),
        0 16px 40px rgba(0,0,0,0.75);
    color: #e5e7eb;
    font-size: 0.8rem;
    pointer-events: auto;

    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.notify-show {
    opacity: 1;
    transform: translateX(0);
}

.notify-hide {
    opacity: 0;
    transform: translateX(16px);
}

.notify-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15,23,42,0.9);
    box-shadow: 0 0 0 1px rgba(15,23,42,0.8);
    font-size: 0.9rem;
}

.notify-content {
    flex: 1;
}

.notify-title {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 0.1rem;
}

.notify-message {
    font-size: 0.78rem;
    color: #cbd5f5;
}

.notify-close {
    border: none;
    background: transparent;
    color: #94a3b8;
    padding: 0;
    margin-left: 0.25rem;
    cursor: pointer;
    font-size: 0.8rem;
    line-height: 1;
}

.notify-close:hover {
    color: #e5e7eb;
}

/* Tip bazlı renkler */

.notify-success {
    border-left: 3px solid #22c55e;
}

.notify-success .notify-icon {
    color: #22c55e;
}

.notify-success .notify-title {
    color: #86efac;
}

.notify-error {
    border-left: 3px solid #ef4444;
}

.notify-error .notify-icon {
    color: #f97373;
}

.notify-error .notify-title {
    color: #fecaca;
}

.notify-warning {
    border-left: 3px solid #facc15;
}

.notify-warning .notify-icon {
    color: #fed7aa;
}

.notify-warning .notify-title {
    color: #fee9a5;
}

.notify-info {
    border-left: 3px solid #38bdf8;
}

.notify-info .notify-icon {
    color: #7dd3fc;
}

.notify-info .notify-title {
    color: #bae6fd;
}
