.apt-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.apt-toast {
    background: #fff;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    min-width: 300px;
    max-width: 450px;
    border-left: 4px solid #ccc;
}

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

.apt-toast-success { border-left-color: #22c55e; }
.apt-toast-error { border-left-color: #ef4444; }
.apt-toast-warning { border-left-color: #f59e0b; }
.apt-toast-info { border-left-color: #3b82f6; }

.apt-toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.apt-toast-success .apt-toast-icon { color: #22c55e; }
.apt-toast-error .apt-toast-icon { color: #ef4444; }
.apt-toast-warning .apt-toast-icon { color: #f59e0b; }
.apt-toast-info .apt-toast-icon { color: #3b82f6; }

.apt-toast-message {
    flex: 1;
    font-size: 14px;
    line-height: 1.4;
}

.apt-toast-close {
    cursor: pointer;
    font-size: 18px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.apt-toast-close:hover {
    opacity: 1;
}
