/* assets/css/actb-toast.css */
.actb-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column-reverse;
    gap: 12px;
    z-index: 99999;
    pointer-events: none;
}

.actb-toast {
    min-width: 280px;
    max-width: 400px;
    background: #ffffff;
    color: #1a1a1a;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    pointer-events: all;
    border-left: 5px solid #0073e6;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.actb-toast.actb-toast-visible {
    transform: translateX(0);
}

.actb-toast.actb-toast-error { border-left-color: #e63946; }
.actb-toast.actb-toast-success { border-left-color: #2a9d8f; }
.actb-toast.actb-toast-warning { border-left-color: #f4a261; }

.actb-toast-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.actb-toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.actb-toast-close:hover { color: #333; }

@media (max-width: 480px) {
    .actb-toast-container {
        bottom: 16px;
        right: 16px;
        left: 16px;
    }
    .actb-toast {
        min-width: 0;
        width: 100%;
        transform: translateY(120%);
    }
    .actb-toast.actb-toast-visible {
        transform: translateY(0);
    }
}
