.app-notification-container {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 99999;
    width: 380px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-notification {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
    border-left: 6px solid #28c76f;
    /* Default Success (Green) */
    animation: notification-slide-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.app-notification.info {
    border-left-color: #00cfe8;
    /* Info (Blue) */
}

.app-notification.warning {
    border-left-color: #ff9f43;
    /* Warning (Orange) */
}

.app-notification.error {
    border-left-color: #ea5455;
    /* Error (Red) */
}

.app-notification-icon {
    width: 44px;
    height: 44px;
    background: #e8f9ef;
    /* Success BG */
    color: #28c76f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.app-notification.info .app-notification-icon {
    background: #e0f9fc;
    color: #00cfe8;
}

.app-notification.warning .app-notification-icon {
    background: #fff3e8;
    color: #ff9f43;
}

.app-notification.error .app-notification-icon {
    background: #fceaea;
    color: #ea5455;
}

.app-notification-content {
    flex-grow: 1;
    padding-right: 20px;
}

.app-notification-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    color: #333544;
}

.app-notification-body {
    font-size: 13px;
    color: #676d7d;
    line-height: 1.5;
    word-break: break-word;
}

.app-notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: #babfc7;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s;
}

.app-notification-close:hover {
    color: #4b4b4b;
}

@keyframes notification-slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.app-notification-fade-out {
    animation: notification-slide-out 0.3s forwards;
}

@keyframes notification-slide-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}