#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.therapy-toast {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 350px;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
}

.therapy-toast.fade-out {
    animation: slideOut 0.5s ease-out forwards;
}

.toast-content {
    display: flex;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
}

.toast-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.toast-body {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 16px;
    color: #10B981;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    color: #374151;
    margin-bottom: 4px;
}

.toast-time {
    font-size: 12px;
    color: #6B7280;
}

.toast-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.toast-close:hover {
    color: #374151;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    #toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .therapy-toast {
        min-width: auto;
        max-width: none;
    }
}