/* Toast Notification Styles */
.chica-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    pointer-events: none;
}

.chica-toast {
    background: #fff;
    border-left: 4px solid #E21E51;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #444;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 10px;
    max-width: 350px;
    padding: 16px 32px 16px 20px;
    pointer-events: auto;
    position: relative;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    word-wrap: break-word;
    display: flex;
}

.chica-toast.show {
    transform: translateX(0);
}

.chica-toast.hide {
    transform: translateX(100%);
    opacity: 0;
}

.chica-toast.error {
    border-left-color: #dc3545;
    color: #dc3545
}

.chica-toast.warning {
    border-left-color: #ffc107;
}

.chica-toast.success {
    border-left-color: #28a745;
}

.chica-toast.info {
    border-left-color: #17a2b8;
}

.chica-toast .toast-icon {
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.chica-toast .toast-message {
    display: inline-block;
    vertical-align: middle;
}

.chica-toast .toast-close {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 12px;
    top: 12px;
    transition: color 0.2s ease;
}

.chica-toast .toast-close:hover {
    color: #333;
}

/* Animation for multiple toasts */
.chica-toast:nth-child(1) { animation-delay: 0s; }
.chica-toast:nth-child(2) { animation-delay: 0.1s; }
.chica-toast:nth-child(3) { animation-delay: 0.2s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .chica-toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .chica-toast {
        max-width: none;
        margin-bottom: 8px;
    }
}