.app-toast-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99999;
    pointer-events: none;
    width: auto;
}

.app-toast {
    background: #fff;
    color: #171717;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
    animation: toast-enter 0.35s cubic-bezier(0.21, 1.02, 0.73, 1) forwards;
    pointer-events: auto;
    border: 1px solid #f5f5f5;
    min-width: 280px;
    max-width: 356px;
}

.app-toast-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    flex-shrink: 0;
}

.app-toast-error .app-toast-icon-wrapper {
    background-color: #FEE2E2;
    color: #EF4444;
}

.app-toast-success .app-toast-icon-wrapper {
    background-color: #DCFCE7;
    color: #22C55E;
}

.app-toast-info .app-toast-icon-wrapper {
    background-color: #DBEAFE;
    color: #3B82F6;
}

.app-toast-icon {
    font-size: 14px;
}

.app-toast-message {
    flex-grow: 1;
}

.app-toast-close {
    background: transparent;
    border: none;
    color: #A3A3A3;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 4px;
    transition: color 0.2s;
}

.app-toast-close:hover {
    color: #171717;
}

.app-toast.app-toast-error, .app-toast.app-toast-success, .app-toast.app-toast-info {
    border-left: 1px solid #f5f5f5;
}

.app-toast.app-toast-exit {
    animation: toast-exit 0.2s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes toast-enter {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes toast-exit {
    to {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }
}
