/* Toast Notifications */
.kaam-toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    max-width: 350px;
}

.kaam-toast {
    background-color: white;
    border-radius: 10px;
    padding: 12px 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 280px;
    max-width: 100%;
    animation: toast-slide-in 0.3s;
    transition: all 0.3s;
}

.kaam-toast.kaam-toast-hiding {
    transform: translateX(120%);
    opacity: 0;
}

.kaam-toast-info {
    border-left: 4px solid #3498db;
}

.kaam-toast-success {
    border-left: 4px solid #2ecc71;
}

.kaam-toast-warning {
    border-left: 4px solid #f39c12;
}

.kaam-toast-error {
    border-left: 4px solid #e74c3c;
}

.kaam-toast-content {
    flex-grow: 1;
    padding-right: 10px;
    font-size: 14px;
}

.kaam-toast-close {
    background: transparent;
    border: none;
    font-size: 18px;
    color: #777;
    cursor: pointer;
}

@keyframes toast-slide-in {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Mobile Toast Adjustments */
@media (max-width: 480px) {
    .kaam-toast-container {
        bottom: 70px; /* Adjusted to be above bottom navigation */
        right: 10px;
        left: 10px;
    }
    
    .kaam-toast {
        width: 100%;
        min-width: unset;
    }
}